build(deps): update mdoc, sbt-mdoc from 2.6.1 to 2.6.2 (#428) #1175
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: Scala CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
tags: ['v*'] | |
pull_request: | |
types: [synchronize, opened, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Fetch all commits, used by sbt-dynver plugin to determine version | |
fetch-depth: 0 | |
# Fetch all tags | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- run: git fetch --tags | |
- uses: ./.github/setup | |
- name: Compile code | |
run: sbt "compile; docs3/mdoc --check; mimaReportBinaryIssues" | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/setup | |
- name: Check formatting | |
run: sbt scalafmtCheckAll | |
test: | |
name: Test (${{matrix.os}}) | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'windows-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/setup | |
- name: Test | |
run: sbt test | |
test-js: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/setup | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
cache-dependency-path: node/package-lock.json | |
- name: Generate JS | |
run: sbt fastLinkJS | |
- name: Npm setup | |
run: npm ci | |
working-directory: node | |
- name: Test | |
run: npm test | |
working-directory: node | |
mutation-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/setup | |
- name: Run stryker | |
run: sbt 'project WeaponRegeX; stryker' | |
env: | |
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
release: | |
needs: [build, formatting, test, test-js] | |
if: "github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/')" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Fetch all commits, used by sbt-dynver plugin to determine version | |
fetch-depth: 0 | |
# Fetch all tags | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- run: git fetch --tags | |
- uses: ./.github/setup | |
- name: Set NPM Env | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: Publish code | |
run: sbt ci-release | |
env: | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
CI_RELEASE: WeaponRegeXPublishSigned |