-
Notifications
You must be signed in to change notification settings - Fork 68
67 lines (63 loc) · 1.99 KB
/
github-actions.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
56
57
58
59
60
61
62
63
64
65
66
67
# The purpose of this workflow file is to make sure the app
# builds successfully as well as to check whether it passes
# the linter and the tests
name: Setup Builds and Tests
on:
push:
branches: [master, release]
pull_request:
branches: [master, release]
jobs:
linux-setup-and-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run lint
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js"
macos-setup-and-tests:
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x]
steps:
# Install Firefox on macOS-arm64 since it is not included in the runner as of 27 Apr 2024
- name: Install firefox
run: brew install --cask firefox
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run lint
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js" || npm test -- "--karma-config=./tests/karma.ci.conf.js"
# retry tests once, in case they timed out on Mac OS
windows-setup-and-tests:
runs-on: windows-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm update
- run: npm run lint
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js"