Skip to content

Commit

Permalink
updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
proksh committed Sep 16, 2024
1 parent 5e5c451 commit 2ac5c3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'

- run: npm install --frozen-lockfile
working-directory: packages/react
- run: npm run lint && npm run build
- run: npm run build
working-directory: packages/react
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'

- run: npm install --frozen-lockfile
working-directory: packages/react
- run: npm run build
working-directory: packages/react
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: npm run build
working-directory: packages/react

0 comments on commit 2ac5c3b

Please sign in to comment.