Skip to content

Commit

Permalink
Changed build
Browse files Browse the repository at this point in the history
  • Loading branch information
kryptobrah committed Jun 18, 2024
1 parent c99e62c commit ea9a5ea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: '20.x'

- run: pnpm install --frozen-lockfile
- run: pnpm run lint && pnpm run build
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: '20.x'

- run: pnpm install --frozen-lockfile
- name: Create Release Pull Request or Publish
id: changesets
Expand Down

0 comments on commit ea9a5ea

Please sign in to comment.