-
Notifications
You must be signed in to change notification settings - Fork 82
45 lines (35 loc) · 998 Bytes
/
unit.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: Lint and unit tests
on:
push:
branches:
- master
- 'spring*'
- 'summer*'
- 'winter*'
pull_request:
branches:
- master
- 'spring*'
- 'summer*'
- 'winter*'
jobs:
lint-unit-tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.12.1'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check License Headers
run: yarn check-license-headers
- name: Check formatting
run: yarn format:check
- name: Run linter
run: yarn lint
- name: Run unit tests
run: yarn test