Fix GitHub pages deployment #265
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 | |
on: | |
pull_request: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
assets_path: | |
type: string | |
description: 'Path to load static assets' | |
required: false | |
default: '' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: | | |
npm pkg delete scripts.prepare | |
npm ci | |
- name: Setup env | |
run: | | |
config=' | |
GA_TRACKING_ID="${{ secrets.GA_TRACKING_ID }}" | |
FORMSPREE_ID="${{ secrets.FORMSPREE_ID }}" | |
HOTJAR_ID="${{ secrets.HOTJAR_ID }}" | |
HOTJAR_SNIPPET_VERSION="${{ secrets.HOTJAR_SNIPPET_VERSION }}" | |
ASSETS_BASE_PATH="${{ github.event.inputs.assets_path }}" | |
' | |
echo "$config" > env.local | |
cat ./env.local | |
- name: Lint | |
run: | | |
npm run lint | |
npm run lint:editorconfig | |
- name: Build | |
run: npm run build | |
- name: Check seo | |
run: npm run check-seo | |
- name: e2e | |
uses: cypress-io/github-action@v5 | |
with: | |
start: npm run start | |
record: false | |
- name: Upload build results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: out |