-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (47 loc) · 1.44 KB
/
unit-tests.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
name: Unit Tests
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
node:
- '18.x'
- '20.x'
fail-fast: false
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install Playwright Dependencies
uses: microsoft/playwright-github-action@v1
- name: Install NPM Dependencies
run: npm install @qooxdoo/framework --no-save --no-package-lock
- name: Run Tests
run: ./runtests.sh
- name: Deploy Pages
if: github.event_name == 'push' && github.repository == 'qooxdoo/qxl.testtapper' && github.ref == 'refs/heads/master' && matrix.node == '11.x'
run: |
set -x
npx qx compile --machine-readable --target=build
cd compiled/build
rm -rf transpiled
git init
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m "action build"
git push --force "https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" master:gh-pages
rm -rf .git