Skip to content

Update npm packages #237

Update npm packages

Update npm packages #237

Workflow file for this run

# https://github.com/actions/starter-workflows/blob/001b284cc296236d8b6cf318ebab988bbbf69aac/ci/node.js.yml
name: Node.js CI
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run tsc
- run: npm run build