We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b19db0 commit 5b27fdeCopy full SHA for 5b27fde
.github/workflows/lint.yml
@@ -14,6 +14,19 @@ jobs:
14
version: 'v0.3.0'
15
token: ${{ secrets.GITHUB_TOKEN }}
16
17
+ - name: Setup npm for GitHub Packages
18
+ run: |
19
+ echo -e "\n//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" >> .npmrc
20
+ echo -e "\n//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" >> ~/.npmrc
21
+ echo -e "\n//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
22
+ echo -e "\n//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
26
+
27
+ - name: Link and install packages
28
+ run: npm run build:link
29
30
- name: Generate Sourcemap
31
run: npm run build:sourcemap
32
0 commit comments