build(deps): bump mozilla-actions/sccache-action from 0.0.3 to 0.0.5 #205
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
packages: write | |
contents: read | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v3 | |
- name: Setup Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
# components: rustfmt, clippy | |
- name: Install depenedencies | |
run: npm ci | |
- run: npx nx format:check | |
- run: npx nx affected --target=lint --parallel=3 | |
- run: npx nx affected --target=test --parallel=3 --configuration=ci | |
# - run: npx nx affected --target=build --parallel=3 |