Skip to content

Bump actions/checkout from 3 to 4 (#217) #431

Bump actions/checkout from 3 to 4 (#217)

Bump actions/checkout from 3 to 4 (#217) #431

Workflow file for this run

name: Validate
on:
workflow_call:
push:
branches:
- main
pull_request:
concurrency:
group: validate-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: TypeCheck and Test
shell: bash
run: |
npm install
npm run gen
npm run tsc
npm test