Skip to content

chore: Modularise rollup config #656

chore: Modularise rollup config

chore: Modularise rollup config #656

Workflow file for this run

name: pr
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'media/**'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: 'Test'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Checks
run: pnpm run test:pr