Skip to content

ci: bump actions/checkout from 5.1.0 to 7.0.1 #15

ci: bump actions/checkout from 5.1.0 to 7.0.1

ci: bump actions/checkout from 5.1.0 to 7.0.1 #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- ts-port
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: "22"
cache: yarn
- name: Install Yarn
run: npm install -g yarn@1.22.22
- name: Install
run: yarn install --frozen-lockfile
- name: Generate API client
run: yarn generate
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test