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 8c51647 commit 28a6ac8Copy full SHA for 28a6ac8
.github/workflows/tests.yml
@@ -1,22 +1,16 @@
1
-name: CI
+name: Unit Tests
2
3
-on: [push]
+on: [push, pull_request]
4
5
jobs:
6
build:
7
-
8
- # Machine environment:
9
- # https://help.github.com/en/articles/software-in-virtual-environments-for-github-actions#ubuntu-1804-lts
10
- # We specify the Node.js version manually below, and use versioned Chrome from Puppeteer.
11
runs-on: ubuntu-latest
12
13
steps:
14
- uses: actions/checkout@v1
15
- - name: Use Node.js 12.8
+ - name: Use Node.js 16.16.0
16
uses: actions/setup-node@v1
17
with:
18
node-version: 16.0
19
- - name: Install dependencies
20
- run: npm install
21
- name: Test
22
run: npm test -- --watch=false --browsers=ChromeHeadless
0 commit comments