-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (54 loc) · 2.45 KB
/
tests.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: 'Tests'
on:
push:
pull_request:
# Schedule tests to run every day at 07:00 (if possible)
# Doing so should enable us to capture evt. changes in
# dependencies that are breaking...
# schedule:
# - cron: '0 7 * * *'
jobs:
ion_tests:
name: "Ion (Node ${{ matrix.node }} on ${{ matrix.os }})"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ 'ubuntu-22.04' ]
node: [ '20' ]
steps:
# ------------------------------------------------------------------------------------------------------- #
# Checkout code ...
# ------------------------------------------------------------------------------------------------------- #
- name: "Checkout"
uses: actions/checkout@v3
# ------------------------------------------------------------------------------------------------------- #
# Install Browsers
# ------------------------------------------------------------------------------------------------------- #
- name: "Install Chrome"
uses: browser-actions/setup-chrome@v1
with:
chrome-version: latest
- name: "Install Firefox"
uses: browser-actions/setup-firefox@v1
with:
firefox-version: latest
# ------------------------------------------------------------------------------------------------------- #
# Install Node
# ------------------------------------------------------------------------------------------------------- #
- name: "Use Node ${{ matrix.node }}"
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
# ------------------------------------------------------------------------------------------------------- #
# Run...
# ------------------------------------------------------------------------------------------------------- #
- name: "Install dependencies"
run: npm install
- name: "Make .env file"
run: npm run make:env
- name: "Lint"
run: npm run lint
- name: "Test"
run: npm run test