Skip to content

feat: Adding support for interactive map #34

feat: Adding support for interactive map

feat: Adding support for interactive map #34

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
- feature/v2
push:
branches:
- main
- feature/v2
jobs:
build-library:
name: Build Plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build plugin
run: npm run build
build-documentation:
name: Build Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
working-directory: ./documentation
run: npm install
- name: Build plugin
working-directory: ./documentation
run: npm run build
run-validations:
name: Validate Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Validate code format
run: npm run check
- name: Validate changelog
uses: mindsers/[email protected]
with:
# Path to the CHANGELOG file containing the log entries
path: ./CHANGELOG.md
# Specifies if the CHANGELOG.md file should be validated and the behavior of the action
validation_level: error