Skip to content

Commit

Permalink
ci: do not use --ignore-scripts for esbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Jul 6, 2021
1 parent b992e2a commit 4a4287a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ jobs:
PARSER_NO_WATCH: true

- name: Codecov
if: matrix.node == 14 # only report coverage once per commit
run: |
yarn global add codecov codacy-coverage
codecov
cat ./coverage/lcov.info | codacy-coverage -u rx-ts -n eslint
cat ./coverage/lcov.info | codacy-coverage -u rx-ts -n synckit
env:
CI: 'true'
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn --frozen-lockfile --ignore-scripts
# https://github.com/atlassian/changesets/issues/246
run: |
yarn --frozen-lockfile
rm -rf .git/hooks/commit-msg
- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down

0 comments on commit 4a4287a

Please sign in to comment.