Skip to content

new codes

new codes #5

Workflow file for this run

name: unit-test
on: [push]
jobs:
unit-test-lib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
# build frontend
- name: Cache NPM Modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-npm
with:
path: ./node_modules/
key: cache-npm-${{ hashFiles('yarn.lock') }}
- name: Install Dependencies
if: steps.cache-npm.outputs.cache-hit != 'true'
run: yarn install
- name: Build the Frontend
run: yarn test:lib