Skip to content

Commit

Permalink
chore: use npm ci instead of yarn in ci (ant-design#45980)
Browse files Browse the repository at this point in the history
* chore: use npm ci instead of yarn in ci

* chore: use npm ci instead of yarn in ci

* chore: use npm ci instead of yarn in ci

* chore: use npm ci instead of yarn in ci

* chore: use npm ci instead of yarn in ci

* chore: use npm ci instead of yarn in ci

* chore: use npm ci instead of yarn in ci
  • Loading branch information
kiner-tang authored Nov 21, 2023
1 parent 4baef31 commit e778066
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/trigger-argos-with-whitelist-users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,17 @@ jobs:
echo "whitelisted=false" >> $GITHUB_OUTPUT
fi
- name: install dependencies
if: ${{ steps.check_user.outputs.whitelisted == 'true' }}
run: yarn
- name: cache package-lock.json
uses: actions/cache@v3
with:
path: package-temp-dir
key: lock-${{ github.sha }}

- name: create package-lock.json
run: npm i --package-lock-only --ignore-scripts

- name: install
run: npm install

- name: Build dist file
id: build
Expand Down

0 comments on commit e778066

Please sign in to comment.