Skip to content

Commit

Permalink
chore(CI): remove "--ignore-engines"
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarpl committed Apr 24, 2024
1 parent 6fc2523 commit ea4b5ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
run: sudo apt-get install -y libasound2-dev
- name: Install libudev-dev
run: sudo apt-get install -y libudev-dev
- name: restore node_modules
- name: Restore node_modules
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Prepare Environment
run: |
yarn --ignore-engines --frozen-lockfile --network-timeout 1000000
yarn --frozen-lockfile --network-timeout 1000000
- name: Typecheck
run: yarn build
- name: Lint
Expand All @@ -59,15 +59,15 @@ jobs:
with:
node-version: '18'
cache: 'yarn'
- name: restore node_modules
- name: Restore node_modules
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Prepare Environment
run: |
yarn --ignore-engines --frozen-lockfile --network-timeout 1000000
yarn --frozen-lockfile --network-timeout 1000000
- name: Build
run: |
yarn build
Expand All @@ -84,15 +84,15 @@ jobs:
with:
node-version: '18'
cache: 'yarn'
- name: restore node_modules
- name: Restore node_modules
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Prepare Environment
run: |
yarn --ignore-engines --frozen-lockfile --network-timeout 1000000
yarn --frozen-lockfile --network-timeout 1000000
- name: Build
run: |
yarn build

0 comments on commit ea4b5ac

Please sign in to comment.