Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: Test CI-CD
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Running tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm install -f
- name: Building
run: npm run build
- name: Test
run: npm test