Skip to content

v1.2.2: first class PixiJS v8 support #30

v1.2.2: first class PixiJS v8 support

v1.2.2: first class PixiJS v8 support #30

Workflow file for this run

name: "test"
on:
push:
branches: ["main"]
paths:
- "**/*.js"
- "**/*.ts"
pull_request:
branches: ["*"]
paths:
- "**/*.js"
- "**/*.ts"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- label: PixiJS v6
package: [email protected]
- label: PixiJS v7
package: [email protected]
- label: PixiJS v8
package: [email protected]
name: Test @ ${{ matrix.label }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm install
- name: Use ${{ matrix.package }}
run: npm install ${{ matrix.package }}
- run: npm run test