Skip to content

build(deps): bump @sentry/nextjs from 7.54.0 to 7.77.0 #47

build(deps): bump @sentry/nextjs from 7.54.0 to 7.77.0

build(deps): bump @sentry/nextjs from 7.54.0 to 7.77.0 #47

Workflow file for this run

name: Prepare
on:
pull_request:
types: [synchronize, opened, reopened]
defaults:
run:
shell: bash
jobs:
test:

Check failure on line 12 in .github/workflows/prepare.yml

View workflow run for this annotation

GitHub Actions / Prepare

Invalid workflow file

The workflow is not valid. .github/workflows/prepare.yml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
name: Tests
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: setup node
uses: actions/setup-node@v2
- name: install
run: yarn install --check-files --frozen-lockfile
- name: test
run: yarn test
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: setup node
uses: actions/setup-node@v2
- name: install
run: yarn install --check-files --frozen-lockfile
- name: build
run: yarn build