chore(deps): update actions/upload-artifact digest to 694cdab #4266
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: Test Vite Ecosystem CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: | |
- main | |
paths: | |
- "**" | |
- ".github/workflows/test-vite-ecosystem-ci.yaml" | |
- "!assets/**" | |
- "!integrations/**" | |
pull_request: | |
branches: | |
- "*" | |
paths: | |
- "**" | |
- ".github/workflows/test-vite-ecosystem-ci.yaml" | |
- "!assets/**" | |
- "!integrations/**" | |
jobs: | |
vite-ecosystem-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [18.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache pnpm modules | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-full-${{ hashFiles('pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-full- | |
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0 | |
with: | |
run_install: true | |
- run: pnpm update -r vite@beta | |
- run: cd testing && pnpm exec playwright install | |
- run: pnpm vite-ecosystem-ci:build | |
- run: pnpm vite-ecosystem-ci:test |