Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 4.33.0 to 8.7.0 #341

build(deps-dev): bump @typescript-eslint/eslint-plugin from 4.33.0 to 8.7.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 4.33.0 to 8.7.0 #341

Workflow file for this run

name: Linux build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm ci
- name: code style check
run: |
npm run code-style-check
- name: build, and test
run: |
npm run build
npm test --if-present
env:
CI: true