parcel/.gitea/workflows/check.yaml
Blake Rain 73c8d08a65
All checks were successful
Check / check (push) Successful in 1m2s
Deploy / build (push) Successful in 2m2s
fix: add global declaration file for htmx in TypeScript
This is needed after change in HTMX 2.0.2
2024-08-13 19:22:43 +01:00

30 lines
669 B
YAML

name: Check
on:
- push
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
- name: Install the Stable Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
env:
RUSTUP_PERMIT_COPY_RENAME:
with:
toolchain: stable
components: clippy
cache: false
- name: Run Cargo Check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run Cargo Clippy
uses: actions-rs/cargo@v1
with:
command: clippy