Skip to content

Commit

Permalink
Use yarn in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Apr 4, 2020
1 parent 561213e commit ac00ff3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PullActions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: npm install
run: yarn
- name: Build
run: npm run build
run: yarn build
4 changes: 2 additions & 2 deletions .github/workflows/PushActions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: npm install
run: yarn
- name: Build
run: npm run build
run: yarn build

cut_release:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ReleaseActions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
npm install
npm run postinstall
yarn
yarn postinstall
- name: Build
run: npm run build
run: yarn build

- name: Publish to PyPi
env:
Expand Down

0 comments on commit ac00ff3

Please sign in to comment.