-
-
Notifications
You must be signed in to change notification settings - Fork 133
34 lines (30 loc) · 934 Bytes
/
ci.yaml
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
name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18.x', '20.x', '22.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# This is needed to run headless Chrome on Ubuntu 24.04.
- name: Disable AppArmor
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
- run: npm ci
- run: npm run build
- run: npm run build:docs
# Use `--ignore-scripts` to avoid running the `pretest` script. We already
# built the project in a previous step, no need to build it again.
- run: npm run test --ignore-scripts
- run: npm run test:types
- run: npm run stylelint