This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (73 loc) · 2.15 KB
/
nztunnellers.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
static-check:
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' }}
timeout-minutes: 10
steps:
- name: Checkout source code
uses: actions/[email protected]
- name: Setup python
uses: actions/[email protected]
with:
python-version: '3.9'
- name: Setup node
uses: actions/[email protected]
with:
node-version-file: './client/.nvmrc'
- name: Install server
run: make install
- name: Install client
run: make install-client
- name: Cache pre-commit
uses: actions/[email protected]
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install pre-commit
run: pip3 install pre-commit
- name: Run check
run: pre-commit run --all-files --show-diff-on-failure --color always
- name: Run typecheck
run: make typecheck
build-and-run-tests:
runs-on: ubuntu-latest
if: |
always() &&
(needs.static-check.result == 'success' || needs.static-check.result == 'skipped')
needs: static-check
timeout-minutes: 10
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout source code
uses: actions/[email protected]
- name: Setup python
uses: actions/[email protected]
with:
python-version: '3.9'
- name: Setup node
uses: actions/[email protected]
with:
node-version-file: './client/.nvmrc'
- name: Install server
run: make install
- name: Install client
run: make install-client
- name: Run server tests
run: make test-server
- name: Run client tests
run: make test-client-ci