Skip to content

chore(deps-dev): bump eslint-plugin-compat from 4.0.2 to 4.2.0 #903

chore(deps-dev): bump eslint-plugin-compat from 4.0.2 to 4.2.0

chore(deps-dev): bump eslint-plugin-compat from 4.0.2 to 4.2.0 #903

Workflow file for this run

name: CI
on:
push:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Coverage
run: npm run coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}