Skip to content

chore(deps): lock file maintenance #548

chore(deps): lock file maintenance

chore(deps): lock file maintenance #548

Workflow file for this run

name: CI test
on:
pull_request:
branches:
- main
paths:
- 'src/**'
- 'package.json'
- 'package-lock.json'
- 'babel.config.js'
- 'tsconfig.json'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci
run: npm ci
- name: Lint
run: npm run lint
- name: Typed Check
run: npm run tscheck
- name: build check
run: npm run build
env:
CI: true