Add contracts CI workflow
This commit is contained in:
parent
dbac2f0883
commit
8e6c1ceace
19
.gitea/workflows/check.yml
Normal file
19
.gitea/workflows/check.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: check
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
contracts:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "20"
|
||||||
|
- name: Install
|
||||||
|
run: npm ci
|
||||||
|
- name: Check
|
||||||
|
run: npm run check
|
||||||
Loading…
Reference in New Issue
Block a user