Skip to content

Commit

Permalink
ci: fixed missing lockfile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yeasin2002 committed Nov 16, 2024
1 parent 6f2ebdf commit 9e81ad3
Show file tree
Hide file tree
Showing 3 changed files with 4,086 additions and 8 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/express-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,21 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"

- name: Install dependencies
run: yarn install --frozen-lockfile
# Enable corepack for Yarn Berry support
- name: Enable Corepack
run: corepack enable

# Explicitly set Yarn version
- name: Set Yarn version
run: yarn set version stable

# Install dependencies
- name: Install Dependencies
run: |
yarn install --immutable
# Run checks
- name: Type check
run: yarn tsc --noEmit

Expand Down
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,3 @@ yarn.lock/*
.DS_Store


# lock files
yarn.lock
package-lock.json
pnpm-lock.yaml
bun.lockb
Loading

0 comments on commit 9e81ad3

Please sign in to comment.