forked from syhner/next-kickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (40 loc) · 1.1 KB
/
ci.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
48
49
50
51
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
timeout-minutes: 20
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps
- name: Typecheck
run: pnpm run typecheck
- name: Lint
run: pnpm run lint
- name: Run unit / component tests
run: pnpm run test:unit
- name: Run Playwright tests
run: pnpm run test:e2e
- name: Upload Playwright report
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30