Skip to content

Added .npmrc.pages.

Added .npmrc.pages. #9

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Setup Fortawesome registry
run: |
echo "@fortawesome:registry=https://npm.fontawesome.com/" >> .npmrc
echo "//npm.fontawesome.com/:_authToken=${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}" >> .npmrc
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build