Skip to content

Commit

Permalink
Workflow setup and edit build in package to avoid errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Renurin committed Jul 11, 2024
1 parent 67562de commit c19c47e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Continuos Integration
on: pull_request

jobs:
continous-integration:
runs-on: ubuntu-latest
steps:
- uses: action/checkout@v3
- name: use Node.JS
uses: actions/setup-node@v2
with:
node-version: 21.x
- name: run, install and test
run: |
npm install
npm run build
npm run test

0 comments on commit c19c47e

Please sign in to comment.