Skip to content

Commit

Permalink
Add build step in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
okaycj committed Dec 19, 2023
1 parent 161bb51 commit e72f99e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: Install NPM dependencies
run: npm ci

- name: Build packages
run: npm run build

- name: Lint project
run: npm run lint

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Build packages
run: npm run build

- name: Create Release Pull Request or Publish Packages
id: changesets
uses: changesets/action@v1
Expand Down

0 comments on commit e72f99e

Please sign in to comment.