chore(deps): update node.js to 22.13 (#193) #1029
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: CI | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: danysk/[email protected] | |
- uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: [email protected] | |
- name: Run compile | |
run: sbt compile | |
- name: Run test | |
run: sbt test | |
# - name: Run BDD | |
# run: sbt cucumber | |
test_website_generation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: danysk/[email protected] | |
- name: Test website generation | |
run: | | |
cd docs | |
npm install --force | |
npm run build | |
release: | |
needs: | |
- test | |
- test_website_generation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: danysk/[email protected] | |
- uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: [email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: '20.15' | |
- name: Install Semantic Release | |
run: | | |
npm install | |
npx semantic-release | |
id: release | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |