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 c89a6d7 commit 3c9c424Copy full SHA for 3c9c424
.github/workflows/deploy.yml
@@ -6,6 +6,29 @@ on:
6
- master
7
8
jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ node-version: [18.18.0]
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Use Node.js ${{ matrix.node-version }}
17
+ uses: actions/setup-node@v3
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
+ cache: 'npm'
21
+ - name: Clear npm cache
22
+ run: npm cache clean --force
23
+ - name: Installing dependencies
24
+ run: npm ci
25
+ - name: Running linter
26
+ run: npm run lint
27
+ - name: Running test
28
+ run: npm run test
29
+ env:
30
+ CI: true
31
+
32
deploy:
33
runs-on: ubuntu-latest
34
env:
0 commit comments