Skip to content

add README

add README #1556

Workflow file for this run

name: Node CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: assets
steps:
- uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: "20.10.0"
cache: 'yarn'
cache-dependency-path: 'assets/yarn.lock'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint