This commit is contained in:
parent
e60d4f3283
commit
7348aadd78
26
.github/workflows/check.yml
vendored
Normal file
26
.github/workflows/check.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: Node 22
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
|
||||
- name: Check
|
||||
run: npm run check
|
||||
Loading…
Reference in New Issue
Block a user