Skip to content

Commit 5608ed0

Browse files
authored
Merge pull request #9 from abernier/dev
release
2 parents ba2485c + 93a2a6c commit 5608ed0

File tree

8 files changed

+2838
-1320
lines changed

8 files changed

+2838
-1320
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
push:
3+
branches: [main, dev]
4+
pull_request:
5+
branches: [dev]
6+
7+
jobs:
8+
lgtm:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version-file: ".nvmrc"
15+
cache: "npm"
16+
- run: |
17+
npm ci
18+
npm test
19+
npm run build

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
id: main
3131
run: |
3232
npm ci
33+
npm test
3334
npm run release
3435
3536
# Check if release was successful (dist directory exists)

0 commit comments

Comments
 (0)