Skip to content

Updated Actions to only occur on certain branches #78

Updated Actions to only occur on certain branches

Updated Actions to only occur on certain branches #78

Workflow file for this run

name: Pull Request
on: pull_request
branches-ignore:

Check failure on line 4 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
- 'master'
jobs:
quality:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Biome
uses: biomejs/setup-biome@v1
with:
version: latest
- name: Run Biome
run: biome ci . # https://biomejs.dev/reference/cli/#biome-ci
build:
needs: quality
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Dependencies
run: pnpm install
- name: Build Package
run: pnpm build