Skip to content

build: bump @types/node from 22.10.7 to 22.13.1 #158

build: bump @types/node from 22.10.7 to 22.13.1

build: bump @types/node from 22.10.7 to 22.13.1 #158

Workflow file for this run

name: main
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: "Force HTTPS"
run: git config --global url."https://github".insteadOf ssh://git@github
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Setup NodeJS"
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: "Install dependencies"
run: yarn install
- name: "Build"
run: yarn build
- name: "Run tests"
run: yarn test