We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84b34e9 commit 6dacc2fCopy full SHA for 6dacc2f
.github/workflows/npm-publish-github-packages.yml
@@ -15,8 +15,9 @@ jobs:
15
- uses: actions/setup-node@v3
16
with:
17
node-version: 20
18
- - run: npm ci
19
- - run: npm lint
+ cache: 'yarn'
+ - run: yarn install
20
+ - run: yarn lint
21
22
publish-gpr:
23
needs: build
@@ -30,8 +31,9 @@ jobs:
30
31
32
33
registry-url: https://npm.pkg.github.com/
34
- - run: npm prepack
35
36
+ - run: yarn run prepack
37
- run: npm publish
38
env:
39
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
package.json
@@ -52,6 +52,5 @@
52
"dist/**/*.js*",
53
"dist/**/*.mjs*",
54
"dist/**/*.d*"
55
- ],
56
- "packageManager": "yarn@3.2.4"
+ ]
57
}
0 commit comments