bump; (deps-dev): bump @typescript-eslint/parser from 8.0.1 to 8.8.1 #201
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: Toybox C1200 | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- "crates/**" | |
- "packages/**" | |
- ".github/workflows/**" | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: ./package-lock.json | |
- run: mkdir ./samples/Toybox_c1200/ | |
- run: npm ci | |
- run: cd ./packages/toybox_c1200_ui/ && npm run build | |
- run: cargo xtask bundle toybox_c1200 --release |