chore(deps): update dependency @sveltejs/kit to v2 #1000
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: Node.js CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16.x | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
- run: corepack enable pnpm | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3.4.1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- run: pnpm i | |
- run: pnpm run sync # generate .svelte-kit/tsconfig.json | |
- run: pnpm tsc --noEmit | |
- run: pnpm run check | |
- run: pnpm run lint | |
- run: pnpm run package |