Skip to content

Commit

Permalink
add build to CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lnart committed Apr 3, 2024
1 parent 4a3cc4d commit 5e07151
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,23 @@ jobs:
- run: npm run format -- --check
- run: npm run test
- run: npm run build
test-build:
name: build to check compilation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout backend
with:
sparse-checkout: |
- uses: actions/setup-node@v3
name: Setup Node.js
with:
node-version: "21.1.0"
- run: npm ci
name: Install dependecies
- run: npm run build
name: build the project with npm



0 comments on commit 5e07151

Please sign in to comment.