Skip to content

Merge pull request #86 from jehy/dependabot/npm_and_yarn/follow-redir… #110

Merge pull request #86 from jehy/dependabot/npm_and_yarn/follow-redir…

Merge pull request #86 from jehy/dependabot/npm_and_yarn/follow-redir… #110

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install and Test 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm ci
npm tst
npm run lint
npm run coverage-report
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}