Skip to content

Commit

Permalink
chore: install deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hraboviyvadim committed Oct 12, 2023
1 parent ce0d2b0 commit 00d0bbe
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ jobs:
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache: 'npm'

- name: Download artifact
uses: actions/download-artifact@v3
with:
Expand All @@ -57,6 +58,11 @@ jobs:
- name: Unpack artifact
run: tar xf artifact.tar.gz

- name: Install dependencies
run: npm i
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Run eslint
run: npm run lint

Expand All @@ -72,6 +78,7 @@ jobs:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'

- name: Download artifact
uses: actions/download-artifact@v3
with:
Expand All @@ -80,6 +87,11 @@ jobs:
- name: Unpack artifact
run: tar xf artifact.tar.gz

- name: Install dependencies
run: npm i
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Run typescript compile
run: yarn tsc --noEmit

Expand Down

0 comments on commit 00d0bbe

Please sign in to comment.