Skip to content

Commit

Permalink
force compatible typescript version for different pixi versions
Browse files Browse the repository at this point in the history
  • Loading branch information
reececomo committed Apr 27, 2024
1 parent f03f98b commit 14d4512
Show file tree
Hide file tree
Showing 3 changed files with 437 additions and 445 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,24 @@ jobs:
# https://pixijs.com/versions

- label: v6
package-version: 6.5.10
pixi-version: 6.5.10
typescript-version: 4.2.3

- label: v7
package-version: 7.4.2
typescript-version: 5.4.5

- label: v8
package-version: 8.1.0
typescript-version: 5.4.5

name: PixiJS ${{ matrix.label }} (@${{ matrix.package-version }})
name: PixiJS ${{ matrix.label }} (@${{ matrix.pixi-version }})
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm install
- name: Install PixiJS v${{ matrix.package-version }}
run: npm install pixi.js@v${{ matrix.package-version }}
- name: Install PixiJS v${{ matrix.pixi-version }}
run: npm install pixi.js@v${{ matrix.pixi-version }} typescript@v${{ matrix.typescript-version }}
- run: npm run test
Loading

0 comments on commit 14d4512

Please sign in to comment.