Skip to content

The Great Transformation #19

The Great Transformation

The Great Transformation #19

Workflow file for this run

name: Build Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build