Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

Add workflow to check licenses #10

Add workflow to check licenses

Add workflow to check licenses #10

Workflow file for this run

name: QA
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 6.19.1
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: "pnpm"
- uses: actions/cache@v2
with:
path: |
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.json') }}-
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm build