-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 1020 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
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
types: [opened]
jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
name: Build with ${{ matrix.node-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn --immutable
- if: github.event_name == 'pull_request'
name: Validate all commits from PR
run: yarn commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: esLinter
run: yarn lint
- name: Type Checking
run: yarn check-types
# Test via jest
- name: Unit Tests through jest
run: yarn test