name: CI on: push: branches: - main pull_request: types: [opened, synchronize, reopened] concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true defaults: run: shell: bash jobs: test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Initialize environment uses: actions/setup-node@v4 with: node-version-file: package.json cache: npm cache-dependency-path: package-lock.json - name: Install node modules run: npm install - name: Type-checking run: npm run ts