We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2403149 commit 14ae5f5Copy full SHA for 14ae5f5
1 file changed
.github/workflows/ci.yml
@@ -22,15 +22,17 @@ jobs:
22
uses: actions/checkout@v2
23
- uses: actions/setup-node@v2
24
with:
25
- node-version: '16'
+ node-version: 16
26
- name: Cache dependencies
27
uses: actions/cache@v2
28
29
path: ~/.npm
30
key: npm-${{ hashFiles('package-lock.json') }}
31
restore-keys: npm-
32
+ - name: Install packages
33
+ run: npm ci
34
- name: Lint code
- run: npm run lint
35
+ run: npm run lint
36
- name: Run browser tests in Saucelabs
37
run: npm run test-ci
38
timeout-minutes: 5
0 commit comments