Skip to content

Upgrade GitHub Actions to v4 and add lint step #8

Upgrade GitHub Actions to v4 and add lint step

Upgrade GitHub Actions to v4 and add lint step #8

name: TypeScript Build Check
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm ci
- run: npm run lint
- run: npm run build