-
Notifications
You must be signed in to change notification settings - Fork 31
80 lines (63 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: CI
on:
push:
workflow_dispatch:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/.cache/ms-playwright
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os: [ubuntu-latest]
node_version: [22]
# include:
# - os: macos-14
# node_version: 22
# - os: windows-latest
# node_version: 22
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set node version to ${{ inputs.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
- name: Install
run: npm ci --include=dev
- name: Install Playwright Dependencies
run: npx playwright install --with-deps
- name: Build
run: npm run build
- name: Test (Chrome)
run: npm run test
- name: Test (Firefox)
run: npm run test:firefox
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install
run: npm ci --include=dev
- name: Check format
run: |
git config --global --add safe.directory $(realpath .)
git status
npm run format
git status
modified_files="$(git status -s)"
echo "Modified files: ${modified_files}"
if [ -n "${modified_files}" ]; then
echo "Detect unformatted files"
echo "You may need to run: npm run format"
echo "${modified_files}"
exit 1
fi