Skip to content

chore: Tune editorconfig #195

chore: Tune editorconfig

chore: Tune editorconfig #195

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches: [ master ]
permissions:
contents: write
pull-requests: write
issues: write
id-token: write # to enable use of OIDC for trusted publishing and npm provenance
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
- run: npm install --no-package-lock
name: Install dependencies
- run: |
npm run lint
npm run js:lint
name: Linter
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Release