Skip to content

cesium: set camera to follow after flying to location #935

cesium: set camera to follow after flying to location

cesium: set camera to follow after flying to location #935

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/cache@v1
with:
path: /tmp/testlogs
key: ${{ runner.os }}-testlogs-${{ hashFiles('**/logdownloader.sh') }}
restore-keys: |
${{ runner.os }}-testlogs-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
# - run: ./test/testlogfiles/logdownloader.sh
# - run: npm run unit
env:
CI: true