Skip to content

Commit

Permalink
ci: install deps + harmonize naming
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Dec 24, 2024
1 parent 6d6afbe commit 6be1d77
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/verify-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: verify-build

# 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 }}

- name: Install Deps
run: npm install

# 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

0 comments on commit 6be1d77

Please sign in to comment.