Skip to content

chore: use release branch to bypass branch protection rule #74

chore: use release branch to bypass branch protection rule

chore: use release branch to bypass branch protection rule #74

Workflow file for this run

name: CI
on:
pull_request:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
command: ["ci:lint", "ci:test", "build"]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: Run Command
run: pnpm ${{ matrix.command }}