fix(metadata): use ACTUALLY correct vercel env var for baseurl #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release/* | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
name: Test App | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js v22.10.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '22.10.0' | |
registry-url: https://npm.fontawesome.com/ | |
scope: '@fortawesome' | |
cache: 'npm' | |
- name: Install Node Dependencies | |
run: npm ci --legacy-peer-deps | |
env: | |
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.NPM_CONFIG_FONT_AWESOME_TOKEN }} | |
- name: Run Unit Tests | |
run: npm run test:ci |