chore(deps): bump pnpm/action-setup from 2.2.4 to 3.0.0 #682
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Install Dependencies for Vite Plugin Relay | |
run: pnpm i | |
- name: Install Playwright | |
run: pnpm --filter example exec playwright install --with-deps | |
- name: Test Example Site | |
run: pnpm --filter example test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Install Dependencies for Vite Plugin Relay | |
run: pnpm i | |
- name: Lint | |
run: pnpm lint |