Skip to content

Integration of heatadapt indicators for GTIF #2006

Integration of heatadapt indicators for GTIF

Integration of heatadapt indicators for GTIF #2006

Workflow file for this run

name: Lint and Test
on:
pull_request:
branches:
- "**"
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
# Checkout code
- uses: actions/checkout@v3
# Install node
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: app/package-lock.json
# Install dependencies
- name: Install dependencies
run: |
cd app/
npm ci --ignore-scripts
# Run linter
- name: Run linter
run: |
cd app/
npm run lint
# TODO: Run tests...