Bump actions/add-to-project from 0.5.0 to 1.0.2 #491
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: Quality | |
on: pull_request | |
jobs: | |
quality: | |
name: Ensure Quality | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: "read" | |
strategy: | |
fail-fast: false | |
matrix: | |
command: | |
- format --check | |
- lint | |
- test:unit | |
- test:integration | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
- name: Setup Node.js 20.x | |
uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/[email protected] | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- uses: actions/[email protected] | |
name: Setup Cypress binary cache | |
with: | |
path: ~/.cache/Cypress | |
key: ${{ runner.os }}-cypress-binary-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-cypress-binary- | |
if: ${{ matrix.command }} == "test:integration" | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Check | |
id: check | |
run: pnpm ${{ matrix.command }} |