Skip to content

chore(deps): bump joi from 17.7.0 to 17.13.4 in /website (#1250) #822

chore(deps): bump joi from 17.7.0 to 17.13.4 in /website (#1250)

chore(deps): bump joi from 17.7.0 to 17.13.4 in /website (#1250) #822

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: 24
- name: yarn install
run: yarn --frozen-lockfile
- name: test
run: yarn test
- name: coverage test
run: yarn coverage
- name: perf test
run: yarn test:perf
- uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}