Skip to content

Commit

Permalink
fix build command
Browse files Browse the repository at this point in the history
  • Loading branch information
Anand Gorantala committed Aug 15, 2024
1 parent c029be4 commit 4b67fe7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ concurrency:
cancel-in-progress: false

jobs:
project_matrix:
examples_matrix:
strategy:
matrix:
project:
example:
- autosuggest
- categories
- dynamic-grouping
Expand All @@ -35,15 +35,15 @@ jobs:
node-version: '20'

- name: Install dependencies
working-directory: ./examples/${{ matrix.project }}
working-directory: ./examples/${{ example.project }}
run: npm install

- name:
Verify the integrity of provenance attestations and registry signatures for installed
dependencies
working-directory: ./examples/${{ matrix.project }}
working-directory: ./examples/${{ example.project }}
run: npm audit signatures

- name: Build
working-directory: ./examples/${{ matrix.project }}
run: npm run build --workspaces
working-directory: ./examples/${{ example.project }}
run: npm run build

0 comments on commit 4b67fe7

Please sign in to comment.