-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (28 loc) · 840 Bytes
/
ci.yaml
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
on: [push]
name: CI
jobs:
build_and_test:
name: "build & test"
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, '[rust]')"
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
with:
diagnostic-endpoint: ''
- uses: DeterminateSystems/magic-nix-cache-action@main
with:
diagnostic-endpoint: ''
- name: cargo build
run: nix build
- name: cargo test
run: nix develop --command cargo test
check-js:
name: "check frontend code"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: cd ircj-serve && yarn
- name: Run ESLint
run: cd ircj-serve && ./node_modules/.bin/eslint . --ext .ts