Skip to content

Updates README

Updates README #3

Workflow file for this run

name: Collect.js CI
on:
push:
branches:
- main
- 'feature/*'
- 'hotfix/*'
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '16', '14', '12', '10', '8', '6']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run Linter and Tests
run: |
npm run eslint:strict
npm run coverage