Skip to content

Bump type-fest from 4.20.0 to 4.26.1 #13890

Bump type-fest from 4.20.0 to 4.26.1

Bump type-fest from 4.20.0 to 4.26.1 #13890

Workflow file for this run

name: JavaScript
on:
push:
jobs:
lint-tests:
name: "Lint and test the codebase"
environment: production
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Lint codebase
run: yarn lint
- name: Test codebase
run: yarn test --bail=0 --watch=false --passWithNoTests
- name: Build codebase
run: yarn build