fix(deps): bulk upgrade deps and dev deps #41
Workflow file for this run
This file contains hidden or 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: Test @netlify/nuxt | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - '**' | |
| - '!release-please--**' | |
| merge_group: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| node-version: ['24'] | |
| include: | |
| - os: ubuntu-latest | |
| node-version: '20.19.0' | |
| fail-fast: false | |
| steps: | |
| - run: git config --global core.symlinks true | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: 2.5.6 | |
| - name: Setup Deno dependencies | |
| run: deno cache https://deno.land/x/eszip@v0.55.2/eszip.ts | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install playwright browsers | |
| run: npx playwright install --with-deps chromium | |
| - name: Build | |
| run: npm run build --workspaces | |
| - name: Lint | |
| # skip linting on node 20 due to eslint issues | |
| # specifically, TypeError: Object.groupBy is not a function | |
| if: matrix.node-version != '20.19.0' | |
| run: npm run lint -w ./packages/nuxt-module | |
| - name: Typecheck | |
| run: npm run test:types -w ./packages/nuxt-module | |
| - name: Tests | |
| run: npm run test:ci -w ./packages/nuxt-module | |
| env: | |
| TMPDIR: ${{ runner.os == 'Windows' && 'C:\\Temp' || '/tmp' }} |