Tiles 6588 change node to node v20 #212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test MapGL Ruler Plugin | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
tags-ignore: | |
- '*' | |
jobs: | |
typings-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- run: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true npm ci | |
- run: npm run build | |
- run: npm run test:typings | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build container and run tests | |
run: docker compose up --build --exit-code-from test test | |
- uses: actions/upload-artifact@v4 | |
if: ${{ failure() }} | |
with: | |
path: test/screenshots/standards/**/__diff_output__/*.png | |
retention-days: 5 |