Skip to content

ui-core: re-arrange story #1

ui-core: re-arrange story

ui-core: re-arrange story #1

Workflow file for this run

name: Build osrd-ui
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Cache node_modules
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Build project
run: |
npm ci
npm run build