Skip to content

Commit

Permalink
chore(ci): install deps from lockfile (#127)
Browse files Browse the repository at this point in the history
* chore(ci): Install dependencies from lockfile

* Update .github/workflows/lint.yml

* Update .github/workflows/lint.yml

* Update .github/workflows/lint.yml

---------

Co-authored-by: Aman Desai <[email protected]>
  • Loading branch information
shivarm and amandesai01 authored Sep 10, 2024
1 parent 2e9c195 commit ca6c6c1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use Node.js
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

- name: Install dependencies
run: yarn install
run: yarn --frozen-lockfile

- name: Check code style
- name: Check Code Style
run: yarn run format:check

- name: Type check
- name: Check Types
run: yarn run type:check

0 comments on commit ca6c6c1

Please sign in to comment.