Skip to content

chore(deps): bump io-ts from 2.2.21 to 2.2.22 #449

chore(deps): bump io-ts from 2.2.21 to 2.2.22

chore(deps): bump io-ts from 2.2.21 to 2.2.22 #449

Workflow file for this run

name: CI Checks
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- run: yarn lint:eslint
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- run: yarn lint:prettier
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- run: yarn lint:tsc
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- run: yarn build
test:
runs-on: ubuntu-latest
env:
BUCKET_ACCESS_KEY_ID: ${{ secrets.BUCKET_ACCESS_KEY_ID }}
BUCKET_SECRET_ACCESS_KEY: ${{ secrets.BUCKET_SECRET_ACCESS_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- run: cp .env.template .env
- run: yarn install
- run: yarn build
- run: yarn dev:databases -d
- run: yarn start > output.log 2>&1 &
- run: yarn playwright install
- run: yarn wait-for-server
- run: HEADLESS=true yarn test