Skip to content

Commit 9a36441

Browse files
authored
Merge pull request #2 from boubkerbribri/fix-build
feat: fix build
2 parents 0bf9db3 + e58dc32 commit 9a36441

File tree

6 files changed

+279
-9
lines changed

6 files changed

+279
-9
lines changed

.github/workflows/lint.yml .github/workflows/checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Lint
1+
name: Lint And Typescript Checks
22

33
on:
44
pull_request:
@@ -55,4 +55,4 @@ jobs:
5555
run: npm ci
5656

5757
- name: Check TypeScript errors
58-
run: npx tsc --strict
58+
run: npx tsc --strict

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- name: Install dependencies
2121
run: npm ci
2222

23+
- name: Build dist
24+
run: npm run build
25+
2326
- name: Publish version
2427
run: npm publish
2528
env:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/node_modules/*
2+
dist

0 commit comments

Comments
 (0)