Bump @fontsource/inter from 4.5.14 to 5.1.0 #100
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
name: Build pull request | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
jobs: | |
build-pull-request: | |
name: Build pull request | |
runs-on: ubuntu-latest | |
env: | |
PR_NUMBER: ${{github.event.number}} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.7 | |
- name: Setup node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 20.12.2 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build app | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: npm run build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4.3.4 | |
with: | |
name: preview | |
path: dist | |
retention-days: 1 | |
- name: Save pr number | |
run: echo ${PR_NUMBER} > ./pr.txt | |
- name: Upload pr number | |
uses: actions/upload-artifact@v4.3.4 | |
with: | |
name: pr | |
path: ./pr.txt | |
retention-days: 1 |