Skip to content

Commit 9478895

Browse files
committed
Auto-merge master back to develop
2 parents 9d75ca2 + 873b879 commit 9478895

3 files changed

Lines changed: 1491 additions & 1454 deletions

File tree

.github/workflows/pr-check.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Check Pull Request
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- synchronize
7+
- reopened
8+
branches:
9+
- master
10+
11+
concurrency:
12+
group: pr-check-${{ github.event.pull_request.number }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
test:
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout Repository
21+
uses: actions/checkout@v5
22+
23+
- name: Install Node.js
24+
uses: actions/setup-node@v6
25+
with:
26+
node-version: current
27+
28+
- name: Install Dependencies
29+
run: npm ci --ignore-scripts
30+
31+
- name: Run Tests
32+
run: npm run test

0 commit comments

Comments
 (0)