Skip to content

Commit

Permalink
Install plugins in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gschier committed Feb 25, 2024
1 parent ff3165a commit 783b722
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,18 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install dependencies
run: npm ci
run: |
npm ci
cd plugins/filter-jsonpath
npm ci
cd ../filter-xpath
npm ci
cd ../importer-insomnia
npm ci
cd ../importer-postman
npm ci
cd ../importer-yaak
npm ci
- name: Build plugins
run: npm run build:plugins
- name: Run tests
Expand Down

0 comments on commit 783b722

Please sign in to comment.