Update dependency @types/node to v22.9.0 #1503
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: Tests | |
on: | |
pull_request: | |
paths: | |
- '**' | |
jobs: | |
build: | |
name: Builds & Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: π§βπ» Setup env | |
uses: jycouet/jycouet/shared-config/setup@main | |
with: | |
pnpmVersion: 9 | |
nodeVersion: 22.6.0 | |
# - name: π οΈ Prepare nx 1/2 | |
# uses: nrwl/nx-set-shas@v4 | |
# - name: π οΈ Prepare nx 2/2 | |
# run: git branch --track main origin/main | |
# - name: π Run nx affected | |
# run: pnpm nx:affected | |
- name: π Run nx all | |
run: pnpm nx:all | |
# - name: π§ Build Packages | |
# run: pnpm run build | |
# - name: π§Ή Lint Check | |
# run: pnpm run lint | |
# - name: π Run Tests | |
# run: pnpm run test:ci | |
# verify_create: | |
# name: Verify Create | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# template: [kit-routes] | |
# # template: [kit-routes, sveltekit-remult] | |
# steps: | |
# - name: π Checkout Repository | |
# uses: actions/checkout@v4 | |
# with: | |
# # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
# fetch-depth: 0 | |
# - name: π§βπ» Setup env | |
# uses: jycouet/jycouet/shared-config/setup@main | |
# with: | |
# pnpmVersion: 9 | |
# nodeVersion: 22.6.0 | |
# - name: π§ Run nx build | |
# run: pnpm build | |
# - name: β Create template | |
# run: | |
# cd packages/create-kitql && pnpm dev test-${{ matrix.template }} -t ${{ matrix.template }} | |
# - name: π§βπ» Install playwright | |
# run: cd packages/create-kitql/test-${{ matrix.template }} && npx [email protected] install | |
# - name: π οΈ e2e install | |
# run: cd packages/create-kitql/test-${{ matrix.template }} && pnpm i --no-frozen-lockfile | |
# - name: π e2e tests (build, e2e, unit) | |
# run: cd packages/create-kitql/test-${{ matrix.template }} && pnpm run test:ci |