Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
sehyunc committed Sep 5, 2024
1 parent c208186 commit 5acd8bd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,18 @@ jobs:
with:
version: 9.1.4

- name: Configure npm for GitHub Packages
- name: Create .npmrc
run: |
npm config set @renegade-fi/tradingview-charts:registry https://npm.pkg.github.com
npm config set //npm.pkg.github.com/:_authToken ${{ secrets.PKG_GITHUB_TOKEN }}
echo "registry=https://registry.npmjs.org" > .npmrc
echo "@renegade-fi:registry=https://registry.npmjs.org" >> .npmrc
echo "@renegade-fi/tradingview-charts:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.PKG_GITHUB_TOKEN }}" >> .npmrc
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.PKG_GITHUB_TOKEN }}

- run: pnpm run lint
- run: pnpm run format -- --check
- run: pnpm prettier --check .
- run: pnpm run typecheck

0 comments on commit 5acd8bd

Please sign in to comment.