Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- run: npm ci
- uses: actions/cache@v3
id: load-cache
Expand All @@ -30,7 +30,7 @@ jobs:
- ${{ github.event_name == 'pull_request' && github.triggering_actor == 'omacranger' }}
is_master_push:
- ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
version: ["5.15.4", "6.1.1", "6.2.0", "6.4.0", "6.7.2"]
version: ["5.15.4", "6.1.1", "6.2.0", "6.4.0", "6.7.2", "7.0.0"]
package: ["free", "pro"]
exclude:
- is_master_push: false
Expand All @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- uses: actions/cache@v3
id: load-cache
with:
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- uses: actions/cache@v3
id: load-cache
with:
Expand All @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- uses: actions/cache@v3
id: load-cache
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
version:
required: false
type: string
default: "6.4.0"
default: "7.0.0"
package:
required: false
type: string
Expand All @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- uses: actions/cache@v3
id: load-cache
with:
Expand All @@ -31,7 +31,7 @@ jobs:
if [ "${{ inputs.package }}" != "free" ]; then \
printf "@fortawesome:registry=https://npm.fontawesome.com/\n//npm.fontawesome.com/:_authToken=${{ secrets.FA_NPM_KEY }}" > .npmrc; \
fi
if [ "${{ inputs.version }}" != "6.7.2" ] || [ "${{ inputs.package }}" != "free" ]; then \
if [ "${{ inputs.version }}" != "7.0.0" ] || [ "${{ inputs.package }}" != "free" ]; then \
npm i --no-save @fortawesome/fontawesome-${{ inputs.package }}@${{ inputs.version }}; \
fi
if [ "${{ inputs.package }}" != "free" ]; then \
Expand Down