We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66291a6 commit cc8c45bCopy full SHA for cc8c45b
1 file changed
.github/workflows/main.yml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
matrix:
10
node: ['14.x']
11
- os: [windows-latest]
+ os: [ubuntu-latest, windows-latest, macOS-latest]
12
13
steps:
14
- name: Checkout repo
@@ -19,14 +19,14 @@ jobs:
19
with:
20
node-version: ${{ matrix.node }}
21
22
- - name: Install deps and build (with cache)
23
- uses: bahmutov/npm-install@v1
+ - name: Install dependencies
+ run: npm install --no-audit
24
25
- name: Lint
26
- run: yarn lint
+ run: npm run lint
27
28
- name: Test
29
- run: yarn test --ci --coverage --maxWorkers=2
+ run: npm run test --ci --coverage --maxWorkers=2
30
31
- name: Build
32
- run: yarn build
+ run: npm run build
0 commit comments