Skip to content

Bump @sinclair/typebox from 0.25.24 to 0.31.14 #342

Bump @sinclair/typebox from 0.25.24 to 0.31.14

Bump @sinclair/typebox from 0.25.24 to 0.31.14 #342

Workflow file for this run

name: Run Tests
env:
GH_ACTIONS: 'true'
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Test
uses: nick-fields/retry@v2
with:
timeout_minutes: 3
max_attempts: 3
command: yarn test:ci