-
Notifications
You must be signed in to change notification settings - Fork 383
40 lines (37 loc) · 1.04 KB
/
build-test.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
name: Build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build_test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
node-version: ['20']
name: ${{ matrix.platform }} / Node.js v${{ matrix.node-version }}
runs-on: ${{ matrix.platform }}
steps:
- run: git config --global core.autocrlf false # Preserve line endings
- uses: actions/checkout@v4
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: Lint packages
run: npm run lint
- name: Test packages
run: npm test --if-present
build_test_all:
if: always()
runs-on: ubuntu-latest
needs: build_test
steps:
- name: Check build matrix status
if: ${{ needs.build_test.result != 'success' }}
run: exit 1