This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
Upgrade more stuff #208
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: Astro Check, TypeScript Check, Rome CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
jobs: | |
check: | |
name: pnpm check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
run_install: | | |
- args: [--frozen-lockfile, --strict-peer-dependencies] | |
- name: Run Checks | |
run: pnpm run check |