fix: check client side for redirects #2305
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: CI | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'stable' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
eslint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install node v20 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: yarn install | |
run: yarn install | |
- name: run eslint | |
run: yarn lint | |
env: | |
CI: true | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install node v20 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: yarn install | |
run: yarn install | |
- name: Run Jest | |
run: yarn test | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install node v20 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: yarn install | |
run: yarn install | |
- name: Build | |
run: | | |
printf 'defaults.url=https://sentry.io/\ndefaults.org=koreanbots\ndefaults.project=client' > sentry.properties | |
yarn build | |
env: | |
CI: true | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
NEXT_PUBLIC_SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} |