Skip to content

Commit

Permalink
Update build file
Browse files Browse the repository at this point in the history
  • Loading branch information
kullJul committed Jun 3, 2024
1 parent 7d958ae commit e5b0370
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: build

on:
push:
branches: [ main ]
branches: [ main, dev, certification]
pull_request:
branches: [ main ]
branches: [ main, dev, certification ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -23,6 +23,8 @@ jobs:
- run: npm audit
continue-on-error: true

- run: npm outdated
continue-on-error: true
- run: npm ci

- run: npm run eslint --if-present
Expand All @@ -31,6 +33,6 @@ jobs:

- run: npm run package

- run: npm run test
- run: npm test
env:
CI: true

0 comments on commit e5b0370

Please sign in to comment.