Skip to content

Commit 4a4287a

Browse files
committed
ci: do not use --ignore-scripts for esbuild
1 parent b992e2a commit 4a4287a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,10 @@ jobs:
5151
PARSER_NO_WATCH: true
5252

5353
- name: Codecov
54-
if: matrix.node == 14 # only report coverage once per commit
5554
run: |
5655
yarn global add codecov codacy-coverage
5756
codecov
58-
cat ./coverage/lcov.info | codacy-coverage -u rx-ts -n eslint
57+
cat ./coverage/lcov.info | codacy-coverage -u rx-ts -n synckit
5958
env:
6059
CI: 'true'
6160
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434
${{ runner.os }}-yarn-
3535
3636
- name: Install Dependencies
37-
run: yarn --frozen-lockfile --ignore-scripts
37+
# https://github.com/atlassian/changesets/issues/246
38+
run: |
39+
yarn --frozen-lockfile
40+
rm -rf .git/hooks/commit-msg
3841
3942
- name: Create Release Pull Request or Publish to npm
4043
id: changesets

0 commit comments

Comments
 (0)