-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 759 Bytes
/
Copy pathci.yml
File metadata and controls
30 lines (28 loc) · 759 Bytes
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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: ['20']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx tsc --build
- run: npx eslint . --ext .ts
- name: Unit tests with coverage
run: npx jest --no-cache --coverage
- name: Integration tests
run: npx jest --config jest.integration.config.js --no-cache
- name: E2E tests
run: npx jest --config jest.e2e.config.js --no-cache