Skip to content

Commit

Permalink
Merge pull request #9 from RuggeroVisintin:Scrice994/issue1
Browse files Browse the repository at this point in the history
ci: setup pipeline
  • Loading branch information
Scrice994 authored Dec 3, 2023
2 parents 7dc61f7 + c399864 commit 10760a7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
workflow_dispatch:

jobs:
commit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18

- name: install
run: npm ci

- name: test
run: npm run test

- name: build
run: npm run build

3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,6 @@
/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
},
"exclude": ["./test"]
}

0 comments on commit 10760a7

Please sign in to comment.