Add supplemental area information to Frigid Flurry description (#22040) #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |