Skip to content

Workflow file for this run

name: Development CI - Test before merge to main
on:
pull_request:
branches: [main]
jobs:
pipeline:
runs-on: ubuntu-latest
env:
VITE_BACKEND_API: https://api-gamehub.techsan.dev/api
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm test
- name: Build static content
run: npm run build