chore: upgrade pnpm, pkgs and ran lint fix #268
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: 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: | |
- lint | |
- test:unit | |
- test:integration | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup pnpm 8 | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Setup Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- uses: actions/cache@v3 | |
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 | |
id: deps | |
run: pnpm install | |
- name: Check | |
id: check | |
run: pnpm ${{ matrix.command }} |