Skip to content

Compatiable with Node V18, Got v11, Webpack v5 #541

Compatiable with Node V18, Got v11, Webpack v5

Compatiable with Node V18, Got v11, Webpack v5 #541

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
lint:
name: Run tslint on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, prepublish, and lint
run: |
npm install
npm run vscode:prepublish
npm run tslint