Skip to content

Commit

Permalink
fix: lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewMamdouh committed Aug 28, 2024
1 parent a39c320 commit 7c52978
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ jobs:
trunk-check:
runs-on: ubuntu-latest
steps:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/Hydrogen'
- uses: actions/checkout@v3
- name: Install Dependencies
run: yarn install --immutable --immutable-cache --check-cache
run: |
corepack enable
yarn install --immutable --immutable-cache --check-cache
- name: Trunk Check
uses: trunk-io/[email protected]

0 comments on commit 7c52978

Please sign in to comment.