Skip to content

[Deno Deploy] Update .github/workflows/deploy.yml #6

[Deno Deploy] Update .github/workflows/deploy.yml

[Deno Deploy] Update .github/workflows/deploy.yml #6

Workflow file for this run

name: Lint & Test
on:
pull_request:
push:
branches:
- main
jobs:
unit_tests:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run `astro check`
run: pnpm check
# - name: Run tests
# run: pnpm run test