-
-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (43 loc) · 999 Bytes
/
integration.yml
File metadata and controls
46 lines (43 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Integration UnitTest
on:
push:
branches:
- develop
pull_request:
branches:
- main
- develop
workflow_call:
jobs:
macos-browser-test:
runs-on: macos-latest
permissions:
contents: read
steps:
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- uses: actions/checkout@v6
with:
repository: Next2D/player
ref: main
- run: npm install -g npm@latest
- run: npm install
- run: npm run test
windows-browser-test:
runs-on: windows-latest
permissions:
contents: read
steps:
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- uses: actions/checkout@v6
with:
repository: Next2D/player
ref: main
- run: npm install -g npm@latest
- run: npm install
- run: npm run test