Skip to content

build(deps): bump @tanstack/react-query from 4.22.0 to 5.24.1 #8

build(deps): bump @tanstack/react-query from 4.22.0 to 5.24.1

build(deps): bump @tanstack/react-query from 4.22.0 to 5.24.1 #8

Workflow file for this run

name: PR Build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
pull_request:
branches:
- development
# used to trigger manually if needed
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
name: Setup
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Node 18
uses: actions/setup-node@v3
with:
node-version: "18.16.0"
- run: npm run build --if-present