Bump @tanstack/react-query from 5.24.8 to 5.51.21 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mobile PR | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
# The following give Dependabot permission to write Eslint annotation results | |
checks: write | |
pull-requests: write | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable && yarn setup | |
- name: Eslint | |
run: yarn lint --quiet | |
- name: Typescript | |
run: yarn tsc | |
- name: Test | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: yarn test --ci --silent |