Skip to content

Merge pull request #179 from DeNA/renovate/typescript-5.x #432

Merge pull request #179 from DeNA/renovate/typescript-5.x

Merge pull request #179 from DeNA/renovate/typescript-5.x #432

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Unit Test
run: npm run test