Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Add notice

Add notice #113

Workflow file for this run

name: Develop Check
on:
push:
branches:
- "develop"
jobs:
develop_check:
name: Develop Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build code
run: npm run build
- name: Run tests
run: npm run test