Skip to content

Commit

Permalink
PA-20843: Fix github-actions.yml
Browse files Browse the repository at this point in the history
- Remove lint and typecheck
- Fix build command
  • Loading branch information
daniel-morious committed Oct 30, 2023
1 parent c84fd20 commit 0e0bace
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,10 @@ jobs:
run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > ~/.npmrc
- name: Install dependencies
run: CI=true npm clean-install
- name: Typecheck
run: CI=true npm run typecheck
- name: Lint
run: CI=true npm run lint
- name: Test
run: CI=true npm run test
- name: Build
run: CI=true npm run build:clean
run: CI=true npm run prepublishOnly
- name: NPM publish
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
run: CI=true npm publish
Expand Down

0 comments on commit 0e0bace

Please sign in to comment.