-
Notifications
You must be signed in to change notification settings - Fork 504
53 lines (42 loc) · 1.27 KB
/
runTestsOnPush.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
44
45
46
47
48
49
50
51
52
53
on: [push, pull_request]
name: Build and Test
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18, 20, 21]
os: [macos-latest, ubuntu-latest, windows-latest]
typescript-version: ['^4.9.5', '^5.2.2']
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install Yarn
run: npm install -g yarn
- name: Set resolutions to correct typescript version
uses: jossef/action-set-json-field@v2.1
with:
file: package.json
field: resolutions
value: '{ "typescript": "${{ matrix.typescript-version }}"}'
parse_json: true
# for yarn3
# - name: Set Typescript version
# run: yarn set resolution typescript ${{ matrix.typescript-version }}
- name: Install
run: yarn install --ignore-scripts --no-lockfile
- name: Output ts version
run: yarn tsc --version
- name: Output packages version
run: yarn list
- name: Build
run: yarn run build
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test