@evanpurkhiser/eslint-config 0.27.0 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,9 +15,16 @@ jobs:
|
|
|
15
15
|
- run: pnpm run lint
|
|
16
16
|
publish:
|
|
17
17
|
runs-on: ubuntu-latest
|
|
18
|
+
permissions:
|
|
19
|
+
contents: write
|
|
20
|
+
id-token: write
|
|
18
21
|
steps:
|
|
19
22
|
- uses: actions/checkout@v4
|
|
20
23
|
- uses: actions/setup-node@v4
|
|
24
|
+
with:
|
|
25
|
+
node-version: '24'
|
|
26
|
+
registry-url: 'https://registry.npmjs.org'
|
|
27
|
+
- run: npm install -g npm@latest
|
|
21
28
|
- uses: pnpm/action-setup@v4
|
|
22
29
|
- name: bump version
|
|
23
30
|
run: |
|
|
@@ -25,5 +32,4 @@ jobs:
|
|
|
25
32
|
git config user.email "<>"
|
|
26
33
|
pnpm version minor
|
|
27
34
|
git push
|
|
28
|
-
- run: npm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_AUTH_TOKEN }}
|
|
29
35
|
- run: npm publish --access=public
|
package/package.json
CHANGED