-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (35 loc) · 979 Bytes
/
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
41
42
43
44
name: Build/test
on: push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# windows fails due to jest configuration?
#os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install other prereqs
run: |
echo "$RUNNER_OS";
if [ "$RUNNER_OS" == "macOS" ]; then
brew install cairo
brew install pango
fi
shell: bash
- name: Install dependencies
run: npm install && npm run install
- name: Build
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
- name: Run tests
uses: coactions/setup-xvfb@v1
with:
run: npm test