Skip to content

Bump @types/node from 20.10.1 to 20.10.4 #9

Bump @types/node from 20.10.1 to 20.10.4

Bump @types/node from 20.10.1 to 20.10.4 #9

Workflow file for this run

name: Checks
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run Lint
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run build
run: yarn build