Skip to content

Fix/gpx waypoint table indicators #479

Fix/gpx waypoint table indicators

Fix/gpx waypoint table indicators #479

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened, labeled]
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
environment: preview
env:
BASE_URL: ${{ secrets.BASE_URL }}
steps:
- uses: actions/checkout@v6
- name: Build
uses: actions/setup-node@v6
with:
node-version: 22
cache: 'yarn'
- run: yarn
- run: yarn build
tests:
uses: ./.github/workflows/test.yml
tests-e2e:
uses: ./.github/workflows/test-e2e.yml
secrets: inherit