Skip to content

馃摐 Update documentation on permissions #63

馃摐 Update documentation on permissions

馃摐 Update documentation on permissions #63

Workflow file for this run

# This workflow will make sure the code is linted, tested and valid
name: Validate
permissions:
contents: read
on:
push:
branches:
- '**'
- '!main'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
oxlint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: npx --yes oxlint@latest --deny-warnings # change to the latest release
test:
name: Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test --coverage