-
Notifications
You must be signed in to change notification settings - Fork 466
40 lines (37 loc) · 1.29 KB
/
ci-pr.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
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
# https://help.github.com/en/articles/contexts-and-expression-syntax-for-github-actions
name: Continuous Integration
on: pull_request
jobs:
pr-integration:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Starting X Virtual Frame Buffer (Port 99)
if: startsWith(matrix.os, 'ubuntu')
run: |
#sudo apt-get update
#sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgconf-2-4
sudo /usr/bin/Xvfb -ac :99 -screen 0 1920x1080x24 > /dev/null 2>&1 &
disown -ar # remove all running jobs (e.g. xvfb) from the job table of this bash process
- name: Checkout ${{ github.repository }} @ ${{ github.ref }}
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install NodeJS
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install NPM Packages
run: npm install
- name: Lint
run: npm run lint
- name: Build (web)
run: npm run build:web
- name: Test
env:
DISPLAY: ':99'
run: npm run test