Skip to content

Update README.md to include ignore tips #98

Update README.md to include ignore tips

Update README.md to include ignore tips #98

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test_linux:
name: Test - Ubuntu Node 12
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test:coverage
- name: Submitting code coverage to codecov
run: |
./node_modules/.bin/nyc report --reporter text-lcov > coverage.lcov
curl -s https://codecov.io/bash | bash
test_windows:
name: Test - Windows
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test
test_mac:
name: Test - MacOs
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test