-
Notifications
You must be signed in to change notification settings - Fork 7
61 lines (54 loc) · 1.7 KB
/
code-qa-js.yaml
File metadata and controls
61 lines (54 loc) · 1.7 KB
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
name: Code Quality Assurance - JavaScript
on:
push:
branches: [main]
paths:
- "cgi-bin/**"
- "**/*.json"
- "**/*.js"
- "**/*.css"
- "**/*.html"
- ".github/workflows/code-qa-js.yaml"
pull_request:
branches: [main]
paths:
- "cgi-bin/**"
- "**/*.json"
- "**/*.js"
- "**/*.css"
- "**/*.html"
- ".github/workflows/code-qa-js.yaml"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Check installs
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Quality check - prettier
run: npm run prettier:check
- name: Lint check - ESLint
run: npm run eslint:check
- name: Unit tests - jest
run: npm run test:jest
- name: E2E tests - Playwright
run: npm run test:playwright:headless