Skip to content

Commit

Permalink
build planning extension on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek committed Nov 20, 2024
1 parent c67a08d commit 9e6d250
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,22 @@ jobs:
- run: npm ci
- run: npm run test
- run: npm run lint

extension:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: install
working-directory: client/planning-extension
run: npm ci
- name: compile
working-directory: client/planning-extension
run: npm run compile

0 comments on commit 9e6d250

Please sign in to comment.