-
-
Notifications
You must be signed in to change notification settings - Fork 5
64 lines (55 loc) · 1.5 KB
/
checks.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
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
on: [ push, pull_request ]
name: PushCheck
jobs:
check-frontend:
name: Check Frontend
runs-on: ubuntu-latest
env:
working-directory: ./trackscape-discord-ui
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm Install
working-directory: ${{ env.working-directory }}
run: npm install
- name: Npm Lint
working-directory: ${{ env.working-directory }}
run: npm run lint
- name: Npm Build
working-directory: ${{ env.working-directory }}
run: npm run build
check-backend:
name: Check Backend
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
test-backend:
name: Test Backend
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test