Skip to content

Refactor geoservices plugin #287

Refactor geoservices plugin

Refactor geoservices plugin #287

Workflow file for this run

name: CI tests
on:
push:
branches: [ master ]
pull_request:
branches:
- master
- next
- beta
paths:
- "**/packages/**.js"
- "**/packages/**/package.json"
jobs:
pr-tests:
name: Install, lint, test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install npm 7
run: npm i -g npm@7 --registry=https://registry.npmjs.org
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm test --workspaces
- name: E2E tests
run: npm run test:e2e