Skip to content

Add background color for append difficulty #44

Add background color for append difficulty

Add background color for append difficulty #44

Workflow file for this run

name: "Build Check on Pull Request"
on:
pull_request:
types:
- opened
- reopened
- unlocked
- synchronize
branches:
- main
- dev
paths:
- "src/**"
- "public/**"
- ".env.production"
jobs:
pr-build-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node-version }}
- name: Cache .pnpm-store
uses: actions/cache@v1
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install pnpm
run: curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@6
- name: Install packages
run: pnpm install
- name: Build pages
run: |
pnpm build
env:
NODE_OPTIONS: --max_old_space_size=4096