Skip to content

Search Console redirects #130

Search Console redirects

Search Console redirects #130

Workflow file for this run

name: Build Application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
yarn install --immutable
- name: Run Tests
run: yarn test
- name: Build the project
run: yarn build
env:
NEXT_PUBLIC_SPOT_API_BEARER_TOKEN: ${{ secrets.NEXT_PUBLIC_SPOT_API_BEARER_TOKEN }}