Skip to content

build(deps-dev): bump @types/node from 16.11.15 to 22.7.5 #381

build(deps-dev): bump @types/node from 16.11.15 to 22.7.5

build(deps-dev): bump @types/node from 16.11.15 to 22.7.5 #381

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