Merge pull request #149 from leifermendez/fix/ci-yarn

fix(ci): update yarn
This commit is contained in:
Leifer Mendez
2022-12-08 20:13:02 +01:00
committed by GitHub
2 changed files with 11 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
name: Test / Coverage name: Bot CI
on: on:
push: push:
branches: [dev] branches: [dev]
pull_request: pull_request:
branches: [main] branches: [main, dev]
jobs: jobs:
build: build:
@@ -20,7 +20,10 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm install - run: corepack enable
- run: npm run build --if-present - name: Install NPM Dependencies
- run: npm run test.unit run: yarn install --immutable --network-timeout 300000
- run: npm run test.coverage - name: Build
run: yarn build
- name: Test
run: yarn test

View File

@@ -5,6 +5,7 @@
"cli", "cli",
"bot", "bot",
"provider", "provider",
"adapter" "adapter",
"ci"
] ]
} }