-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (45 loc) · 1.16 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
name: test
on: [ push, pull_request ]
permissions:
contents: read
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18, 20 ]
steps:
- name: checkout
uses: actions/checkout@v3
- uses: pnpm/[email protected]
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: "pnpm"
node-version: ${{ matrix.node-version }}
- name: Install
run: pnpm install
- name: Test
run: pnpm test
e2e:
name: "E2E Tests"
runs-on: ubuntu-latest
- name: checkout
uses: actions/checkout@v3
- uses: pnpm/[email protected]
- name: setup Node.js
uses: actions/setup-node@v3
with:
cache: "pnpm"
node-version: 20
- name: Install
run: pnpm install
- name: Playwright Install
run: pnpm playwright install --with-deps
working-directory: e2e/
- name: Build All
run: pnpm run build
- name: Playwright Test
run: pnpm run e2e
working-directory: e2e/