-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathci.yml
More file actions
56 lines (48 loc) · 1.07 KB
/
ci.yml
File metadata and controls
56 lines (48 loc) · 1.07 KB
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
54
55
56
name: CI
on:
push:
branches: ["main"]
pull_request:
paths:
- 'src/**'
- 'test/**'
- '*.json'
- '*.js'
- '*.ts'
- 'lib/**'
- 'scripts/**'
- '.github/workflows/ci.yml'
- 'package.json'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
node-version: [${NODE_VERSION}]
platform:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
shell: bash
- os: windows-latest
shell: powershell
fail-fast: false
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
- name: Checkout Repository
uses: ${ACTION_CHECKOUT}
- name: Use Nodejs ${{ matrix.node-version }}
uses: ${ACTION_SETUP_NODE}
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm test -- -c -t0