Skip to content

Merge pull request #109 from gios/dependabot/npm_and_yarn/ws-7.5.10 #259

Merge pull request #109 from gios/dependabot/npm_and_yarn/ws-7.5.10

Merge pull request #109 from gios/dependabot/npm_and_yarn/ws-7.5.10 #259

Workflow file for this run

name: Build Package
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 17, 18]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install and Validate
run: |
npm install
npm run eslint
npm run coverage
npm run build
- name: Codecov
run: npx codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}