Skip to content

Commit ca6c6c1

Browse files
shivarmamandesai01
andauthored
chore(ci): install deps from lockfile (#127)
* 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]>
1 parent 2e9c195 commit ca6c6c1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/lint.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,18 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20-
- name: Use Node.js
20+
- name: Set up Node.js 20
2121
uses: actions/setup-node@v4
2222
with:
2323
node-version: '20'
2424
cache: 'yarn'
25+
cache-dependency-path: 'yarn.lock'
2526

2627
- name: Install dependencies
27-
run: yarn install
28+
run: yarn --frozen-lockfile
2829

29-
- name: Check code style
30+
- name: Check Code Style
3031
run: yarn run format:check
3132

32-
- name: Type check
33+
- name: Check Types
3334
run: yarn run type:check

0 commit comments

Comments
 (0)