-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (46 loc) · 1.17 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: test
on:
pull_request_target:
types: [opened, synchronize, reopened]
push:
schedule:
- cron: '0 16 * * *'
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["lts/iron", "latest"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Install playwright
run: npx playwright install --with-deps
- name: Build
run: npm run build
- name: Run tests
run: npm test
windows:
runs-on: windows-latest
strategy:
matrix:
node-version: ["lts/iron", "latest"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Install playwright
run: npx playwright install --with-deps
- name: Build
run: npm run build
- name: Run tests
run: npm test