Skip to content

reduce text size

reduce text size #10

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
environment: Production
permissions:
contents: read
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci || npm install
- run: npm run build
env:
# Dummy variables for build time check if needed
CORE_ENGINE_URL: ${{ secrets.CORE_ENGINE_URL }}
CORE_ENGINE_KEY: ${{ secrets.CORE_ENGINE_KEY }}
FOOTBALL_DATA_API_KEY: ${{ secrets.FOOTBALL_DATA_API_KEY }}