generated from napi-rs/package-template
-
Notifications
You must be signed in to change notification settings - Fork 16
64 lines (50 loc) · 1.48 KB
/
check.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
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: checks
# read-only repo token, no access to secrets
permissions:
contents: read
# no access to secrets
on:
push:
branches: [main, chore/refactor-ci]
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
verify-build:
runs-on: ubuntu-latest
steps:
- name: Install ALSA and Jack dependencies
run: |
sudo apt-get update && sudo apt-get install -y libasound2-dev libjack-jackd2-dev
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Check out repository
uses: actions/checkout@v4
- name: Generate Cargo.lock
run: cargo generate-lockfile
# restore cargo cache from previous runs
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
# The cache should not be shared between different workflows and jobs.
shared-key: ${{ github.workflow }}-${{ github.job }}
# check it builds
- name: Build
run: npm run build
# run checks and tests
- name: Clippy
run: cargo clippy --all-features -- -D warnings
- name: Fmt
run: cargo fmt -- --check --color always
- name: Lint
run: npm run lint
- name: Test
run: npm run test