Skip to content

Commit

Permalink
update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
drortirosh committed Feb 4, 2025
1 parent f9c37f2 commit b7d163f
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,29 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/checkout@v1
- uses: actions/cache@v2
node-version: '20'
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: yarn install
- run: yarn run ci

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/checkout@v1
- uses: actions/cache@v2
node-version: '20'
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: yarn install
- run: yarn preprocess
- run: yarn lerna-lint

Expand Down

0 comments on commit b7d163f

Please sign in to comment.