Skip to content

chore(deps): bump actions/upload-pages-artifact in the action group #86

chore(deps): bump actions/upload-pages-artifact in the action group

chore(deps): bump actions/upload-pages-artifact in the action group #86

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags:
- '!**'
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
FORCE_COLOR: 3
jobs:
ci:
name: Lint, build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Check vulnerabilities
run: npm audit --omit dev
- name: Lint
run: npm run lint
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Build
run: npm run build
- name: Run tests
run: npm run test
- name: Run MapLibre plugin E2E test
run: npm run test:e2e
- name: Generate test coverage
run: npm run test:coverage
- name: Upload test coverage
uses: codecov/codecov-action@v6
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}