Skip to content

Commit 5dc2ece

Browse files
Merge pull request #13 from SpontanCombust/dev
2 parents f451cb7 + 18de67d commit 5dc2ece

File tree

15 files changed

+24119
-20845
lines changed

15 files changed

+24119
-20845
lines changed

.github/workflows/build-and-test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build-and-test
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
- name: Setup
16+
uses: actions/setup-node@v4
17+
- run: npm install
18+
- name: Generate
19+
run: npm run generate
20+
- name: Test
21+
run: npm run test
22+
- name: Commit parser changes
23+
uses: stefanzweifel/git-auto-commit-action@v5
24+
with:
25+
commit_message: "ci: parser"

0 commit comments

Comments
 (0)