Skip to content

Bump astro from 5.14.0 to 5.14.6 #342

Bump astro from 5.14.0 to 5.14.6

Bump astro from 5.14.0 to 5.14.6 #342

Workflow file for this run

name: Run Tests
on:
pull_request:
types: [opened, synchronize]
push:
branches: ["main"]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Checkout project
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: 18
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm check
- name: Run tests
run: pnpm test