Skip to content

Brush up Hellfire Dispatches archetypes and update cursebound trait description #43517

Brush up Hellfire Dispatches archetypes and update cursebound trait description

Brush up Hellfire Dispatches archetypes and update cursebound trait description #43517

Workflow file for this run

name: Project CI
on:
pull_request:
branches: [v13-dev, v14-dev]
push:
branches: [v13-dev, v14-dev]
workflow_dispatch:
branches: [v13-dev, v14-dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Cache NPM Deps
id: cache-npm
uses: actions/cache@v3
with:
path: node_modules/
key: npm-${{ hashFiles('package-lock.json') }}
- name: Install NPM Deps
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
run: npm ci
- name: Build
run: |
pnpm run build --system=pf2e
pnpm run build:packs --system=sf2e
- name: Test
run: npm run test