Skip to content

Commit

Permalink
ci: setup node
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen committed Mar 7, 2024
1 parent 8adfaac commit 084b40f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,22 @@ jobs:
matrix:
os:
- ubuntu-latest
node:
- 20
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
# Used for ruff
# Used by ruff
- uses: actions/setup-python@v5
with:
cache: "pip"
# Used by biome
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"

- run: rustup toolchain install stable --profile minimal
- run: rustup component add rustfmt clippy

Expand Down

0 comments on commit 084b40f

Please sign in to comment.