Skip to content

Bump @types/node from 20.14.11 to 22.7.4 #1725

Bump @types/node from 20.14.11 to 22.7.4

Bump @types/node from 20.14.11 to 22.7.4 #1725

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: yarn
- name: Clean
run: yarn clean
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build
- name: Ensure clean
run: |
git status --porcelain
test -z "$(git status --porcelain)"