-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (44 loc) · 1.03 KB
/
main.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
name: Renderscript
on:
push:
branches:
- 'master'
- 'renovate/**'
pull_request:
env:
COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile
- name: Run Linter
run: yarn lint
tests:
runs-on: ubuntu-latest
name: Tests
needs: lint
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile
- name: Install Playwright browsers
run: yarn playwright install
- name: Build
run: yarn build
- name: Background process
run: |
yarn ci:start &
- name: Run test
run: yarn test