-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (33 loc) · 937 Bytes
/
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
name: Continuous Integration
on:
workflow_dispatch:
# Enable running this workflow from the container build workflow:
workflow_call:
pull_request:
# NOTE: The tests will be run on the main branch as part of the container build workflow.
# push:
# branches:
# - main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
# Many color libraries just need this to be set to any value, but at least
# one distinguishes color depth, where "3" -> "256-bit color".
FORCE_COLOR: 3
jobs:
checks:
name: "Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node_version: 22
cache: npm
- name: Install dependencies
run: npm clean-install
- name: Lint
run: npm run lint
- name: Upload coverage
uses: codecov/codecov-action@v4