Skip to content

Bump version to 2.0.0 and update build and release workflows #41

Bump version to 2.0.0 and update build and release workflows

Bump version to 2.0.0 and update build and release workflows #41

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [
#10,
#12,
#14,
20,
]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Lint with eslint
run: |
npm run lint