Skip to content

Release v1.18.0

Release v1.18.0 #2285

Workflow file for this run

name: Test
permissions:
contents: read
on:
push:
branches: [main, "support-*"]
pull_request:
branches: [main, "support-*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
- run: npm version
- run: npm ci
- run: npm run lint
- run: npm run docs
- run: git diff --exit-code
- run: npm run license
- run: npm run coverage
- uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
files: ./coverage/clover.xml
token: ${{ secrets.CODECOV_TOKEN }}