Skip to content

Commit 936292a

Browse files
authored
Broken PR fix (#42)
1 parent cfc8ea5 commit 936292a

13 files changed

+8667
-12578
lines changed

Diff for: .github/FUNDING.yml

-14
This file was deleted.

Diff for: .github/workflows/check.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ jobs:
1515
- uses: actions/setup-node@v2
1616
with:
1717
node-version: '20'
18-
- run: npm install
19-
- run: npm run lint
20-
- run: npm run build
21-
- run: npm run test
18+
- run: corepack enable
19+
- run: yarn config set enableImmutableInstalls false
20+
- run: yarn
21+
- run: yarn build
22+
- run: yarn lint
23+
- run: yarn test
2224
- name: Upload coverage reports to Codecov
2325
uses: codecov/[email protected]
2426
with:

Diff for: .github/workflows/publish.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
with:
1515
node-version: '20'
1616
registry-url: 'https://registry.npmjs.org/'
17-
- run: npm i
18-
- run: npm run lint
19-
- run: npm run build
20-
- run: npm run test
21-
- run: npm publish
17+
- run: corepack enable
18+
- run: yarn config set enableImmutableInstalls false
19+
- run: yarn
20+
- run: yarn build
21+
- run: yarn lint
22+
- run: yarn test
23+
- run: yarn publish
2224
env:
2325
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,4 @@ bin/
123123
review.zip
124124
dynamic.d.ts
125125
/obsidian/.obsidian
126+
.yarn/install-state.gz

Diff for: .yarnrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
compressionLevel: mixed
2+
3+
nodeLinker: node-modules

0 commit comments

Comments
 (0)