Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Update README.md 💡 #551

Update README.md 💡

Update README.md 💡 #551

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
jobs:
build:
name: Test
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18'
- name: Cache npm
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Test
run: |
sh ./scripts/install-ci.sh
npm run test