Skip to content

Bump package version to 1.1.2 #46

Bump package version to 1.1.2

Bump package version to 1.1.2 #46

Workflow file for this run

name: 'Tests'
on:
push:
branches:
- '**'
jobs:
lint:
name: Run linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
cache: npm
- run: npm install
- run: npm run lint:check
- run: npm run format:check
test:
name: Test on Node.js v${{ matrix.node-version }}
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install
- run: npm run test:coverage
- uses: codecov/codecov-action@v2