feat: add rust build & test action, switch to prettier formatting #4
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: "Astro: build" | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Install and build the webapp | |
uses: withastro/action@v2 | |
with: | |
node-version: 22.6.0 | |
- name: Check linting & formatting | |
run: | | |
- npm run biome:check | |
- npm run prettier:check |