v1.2.2: first class PixiJS v8 support #30
Workflow file for this run
This file contains 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: "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 |