-
-
Notifications
You must be signed in to change notification settings - Fork 13
55 lines (49 loc) · 1.4 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: CI
on:
pull_request:
push:
branches:
- master
- fix-CI-node-18
jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-2019
node_version:
- 14
- 16
- 18
node_arch:
- x64
steps:
- uses: actions/[email protected]
- name: Install Node
uses: actions/[email protected]
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.node_arch }}
check-latest: true
- name: Install dependencies
run: yarn install
- if: "!contains(matrix.os, 'windows')"
name: Run tests 👩🏾💻
run: ./bin/npm test
# Q: Why are we using some random test section when the package.json has a test script?
# A: So that we ensure we use the bundled version of node to run our tests
- if: failure()
name: Print Logs for exceptions
run: if [[ -f "./script/log.txt" ]]; then cat ./script/log.txt; else echo "No log file found at ./script/log.txt"; fi
shell: bash
Skip:
if: contains(github.event.head_commit.message, '[skip ci]')
runs-on: ubuntu-latest
steps:
- name: Skip CI 🚫
run: echo skip ci