Skip to content

Commit cc8c45b

Browse files
committed
ci: install dependencies without cache
1 parent 66291a6 commit cc8c45b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
node: ['14.x']
11-
os: [windows-latest]
11+
os: [ubuntu-latest, windows-latest, macOS-latest]
1212

1313
steps:
1414
- name: Checkout repo
@@ -19,14 +19,14 @@ jobs:
1919
with:
2020
node-version: ${{ matrix.node }}
2121

22-
- name: Install deps and build (with cache)
23-
uses: bahmutov/npm-install@v1
22+
- name: Install dependencies
23+
run: npm install --no-audit
2424

2525
- name: Lint
26-
run: yarn lint
26+
run: npm run lint
2727

2828
- name: Test
29-
run: yarn test --ci --coverage --maxWorkers=2
29+
run: npm run test --ci --coverage --maxWorkers=2
3030

3131
- name: Build
32-
run: yarn build
32+
run: npm run build

0 commit comments

Comments
 (0)