Bump @astrojs/check from 0.4.1 to 0.5.6 #6
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: No Deploy (Test and Build) | |
on: | |
# Run on any push to any branch except master | |
push: | |
branches-ignore: [master] | |
# Run on any pull request targeting master | |
pull_request: | |
branches: [master] | |
jobs: | |
testAndBuild: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Lint | |
run: pnpm run lint | |
- name: Deep Type check | |
run: pnpm run type-check | |
- name: Build application | |
run: pnpm run build |