Skip to content

refactor: map init, and layer group. #35

refactor: map init, and layer group.

refactor: map init, and layer group. #35

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: '20.5.1'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
path: npm-debug.log
- name: Build Docker
run: docker compose build
- name: Build Components
run: npm run build -w @busmap/components
- name: Build UI
run: npm run build -w ui
- name: Lint
run: npm run lint