Skip to content

Commit

Permalink
ci(github-actions): use npm install replace yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Feb 20, 2023
1 parent a0384dc commit 86376cd
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,20 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Set up dependencies
- name: Set up Python dependencies
run: |
pip install -U pip
# pip install wheel
# pip wheel -q -r requirements/travis.txt
pip install -r requirements/travis.txt
- name: Run install
uses: borales/actions-yarn@v4
- uses: actions/setup-node@v3
with:
cmd: install --dev
# yarn install --dev
node-version: 16

- name: Setup JS dependencies
run: |
npm install
- name: lint source
run: flake8 source
Expand Down

0 comments on commit 86376cd

Please sign in to comment.