-
-
Notifications
You must be signed in to change notification settings - Fork 17
35 lines (33 loc) · 795 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
name: Lint & test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Lint-and-test:
name: Lint and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: install
run: npm ci
- name: Lint
run: npm run lint:report
continue-on-error: true
- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v3
with:
markdown-report-on-step-summary: true
- name: Build
run: npm run build
- name: Run tests
run: npx vitest run