-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 927 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
on: [push]
name: Quality Check
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x, 22.x]
steps:
- uses: actions/checkout@v3
- name: Node LTS versions
uses: msimerson/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
env:
FORCE_COLOR: 0
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn build
- uses: actions/upload-artifact@v3
with:
name: build
path: |
build
- uses: willcaul/jest-github-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
test-command: "yarn jest"
- name: Upload coverage report
uses: codecov/codecov-action@v3