-
Notifications
You must be signed in to change notification settings - Fork 13
50 lines (42 loc) · 1.43 KB
/
main.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: UI Lint & Unit Tests
# Controls when the action will run.
on:
# Triggers the workflow on pull request events but only for the main branch
pull_request:
branches:
- main
merge_group:
types: [checks_requested]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "test"
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x] # can support multiple versions ex: [18.x, 20.x]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup ⚙️ Node.js ${{ matrix.node-version }} 🔰
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install Dependencies 🥁
run: yarn install --frozen-lockfile
- name: Lint ✅
run: yarn lint
- name: Run unit tests 🧪
run: yarn test --maxWorkers=2 --coverage --silent --ci --verbose=false
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
fail_ci_if_error: true