We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40896fe commit 42d4fa4Copy full SHA for 42d4fa4
.github/workflows/run_test.yml
@@ -7,23 +7,20 @@ on:
7
jobs:
8
build:
9
10
- runs-on: macos-latest
11
-
12
- strategy:
13
- matrix:
14
- node-version: [12.x]
+ runs-on: ubuntu-latest
15
16
steps:
17
- name: Clone and checkout branch
18
uses: actions/checkout@v2
19
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Set up Node.js version
20
uses: actions/setup-node@v1
21
with:
22
- node-version: ${{ matrix.node-version }}
+ node-version: '12.x'
23
- name: Install dependencies
24
run: npm install
25
- run: npm run build --if-present
26
- name: Run the test
27
run: npm test
+ - run: npm audit
28
env:
29
CI: true
0 commit comments