Skip to content

build(deps-dev): bump del-cli from 3.0.1 to 6.0.0 #374

build(deps-dev): bump del-cli from 3.0.1 to 6.0.0

build(deps-dev): bump del-cli from 3.0.1 to 6.0.0 #374

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