Skip to content

Nav bar II

Nav bar II #97

Workflow file for this run

name: Lint Pull Request
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint