Skip to content

Commit

Permalink
one more try ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlundien committed Jan 6, 2023
1 parent 029132d commit 9320dce
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,21 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install, build, and test
- name: v6 install, build, and test
if: ${{ matrix.fontawesome-svg-core }} == '6.x'
run: |
npm install -g npm
npm install
if [[ ${{ matrix.free-solid-svg-icons }} == '6.x' ]]; then
npm install --no-save @fortawesome/[email protected] @fortawesome/free-solid-svg-icons@${{ matrix.free-solid-svg-icons }} vue@${{ matrix.vue }}
else
npm install --no-save @fortawesome/[email protected] @fortawesome/free-solid-svg-icons@${{ matrix.free-solid-svg-icons }} vue@${{ matrix.vue }}
fi
npm install --no-save @fortawesome/[email protected] @fortawesome/free-solid-svg-icons@${{ matrix.free-solid-svg-icons }} vue@${{ matrix.vue }}
npm run build
npm list vue
npm run test
- name: v5 install, build, and test
if: ${{ matrix.fontawesome-svg-core }} == '1.2.x'
run: |
npm install -g npm
npm install
npm install --no-save @fortawesome/[email protected] @fortawesome/free-solid-svg-icons@${{ matrix.free-solid-svg-icons }} vue@${{ matrix.vue }}
npm run build
npm list vue
npm run test
Expand Down

0 comments on commit 9320dce

Please sign in to comment.