Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Merge pull request #15 from NeuralEmpowerment/fix/typescript-linter-2… #18

Merge pull request #15 from NeuralEmpowerment/fix/typescript-linter-2…

Merge pull request #15 from NeuralEmpowerment/fix/typescript-linter-2… #18

Workflow file for this run

name: Release
on:
push:
branches:
- main
paths:
- 'linters/typescript/**'
jobs:
release:
name: Release
runs-on: ubuntu-latest
defaults:
run:
working-directory: linters/typescript
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_PAT }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release