Skip to content

Commit

Permalink
fix(.github): replace worlflows new build command
Browse files Browse the repository at this point in the history
  • Loading branch information
ben196888 committed Jun 4, 2024
1 parent e02769e commit 8dac422
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ name: Webapp CI
on:
push:
branches: [ main ]
paths:
- 'packages/webapp/**'
pull_request:
branches: [ main ]
paths:
- 'packages/webapp/**'

jobs:
build:
Expand All @@ -16,7 +20,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -29,5 +33,5 @@ jobs:
cache-dependency-path: ./yarn.lock
- run: yarn install
working-directory: .
- run: yarn build:webapp
- run: yarn run webapp build
working-directory: .

0 comments on commit 8dac422

Please sign in to comment.