Skip to content

build(deps-dev): bump @typescript-eslint/parser from 4.33.0 to 6.21.0 #173

build(deps-dev): bump @typescript-eslint/parser from 4.33.0 to 6.21.0

build(deps-dev): bump @typescript-eslint/parser from 4.33.0 to 6.21.0 #173

Workflow file for this run

name: Windows build
on: [push, pull_request]
jobs:
build:
runs-on: windows-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