Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
chore: use ppm on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
scagood committed Jul 7, 2023
1 parent 4adbdfd commit 17913e1
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,20 @@ jobs:
npm init --yes
npm install eslint@latest
cd ..
- name: Install dependencies
- name: Install dependencies (Mac)
if: runner.os == 'Windows'
run: |
ppm install
ppm install linter-eslint
npx atom-package-deps .
- name: Install dependencies (Windows)
if: runner.os != 'Windows'
run: |
pulsar --package install
pulsar --package install linter-eslint
npx atom-package-deps .
pulsar --package install AtomLinter/linter-eslint
- name: List dependencies
run: |
pulsar --package list --enabled --packages
- name: Run tests 👩🏾‍💻
Expand Down

0 comments on commit 17913e1

Please sign in to comment.