
* build: add CI workflow 🕺 Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * refactor: use correct event in CT workflow Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * feat: setup Pipeline 🚰 Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * style: fix lint issues in Dockerfile Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * refactor: automerger now requires CI & CT Workflows Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * chore: add name for CodeQL workflow Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * fix: add ignore files for prettier & eslint Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * chore(deps): bump pinned apt-get packages Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * feat: add `hadolint` config file Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * fix: correct workflow file for automerger Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> * style: remove pinned versions of apt deps Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
name: 'Continuous Testing'
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
checks: write
|
|
contents: read
|
|
|
|
jobs:
|
|
ct:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Check out repository ✨ (non-dependabot)
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check out repository 🎉 (dependabot)
|
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Update apt-get 🚀
|
|
run: sudo apt-get update -qq
|
|
|
|
- name: Install dependencies (Ubuntu) 🚀
|
|
run: >-
|
|
sudo apt-get install -qq libcairo2-dev libjpeg8-dev libpango1.0-dev
|
|
libgif-dev build-essential g++ xvfb libgles2-mesa-dev libgbm-dev
|
|
libxxf86vm-dev
|
|
|
|
- name: Setup node env 📦
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version-file: 'package.json'
|
|
check-latest: true
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies 🚀
|
|
run: npm ci --prefer-offline --no-audit --omit=optional
|
|
|
|
- name: Pull test data 📦
|
|
run: >-
|
|
wget -O test_data.zip
|
|
https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/test_data.zip
|
|
|
|
- name: Prepare test data 📦
|
|
run: unzip -q test_data.zip -d test_data
|
|
|
|
- name: Run tests 🧪
|
|
run: xvfb-run --server-args="-screen 0 1024x768x24" npm test
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
with:
|
|
platforms: 'arm64'
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Test Docker Build
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
push: false
|
|
platforms: linux/arm64,linux/amd64
|