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

Update README.md

Update README.md #76

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: yarn
- name: Test code
run: npm test