Skip to content

build(deps): bump @types/node from 18.19.29 to 18.19.39 #785

build(deps): bump @types/node from 18.19.29 to 18.19.39

build(deps): bump @types/node from 18.19.29 to 18.19.39 #785

Workflow file for this run

name: Build
on:
push:
branches: [updates, next]
pull_request:
branches: [main, beta, updates, next]
jobs:
yarn_build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- name: Cache node modules
uses: actions/cache@v4
id: cache
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint