Skip to content

Development

Development #1

Workflow file for this run

name: Pull Request Check
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
cache: npm
cache-dependency-path: package-lock.json
- name: Install Project 🔧
run: npm run init
- name: Check Linting 🔎
run: npm run lint
- name: Check Build 🔧
run: npm run build