Skip to content

chore(deps): update eslint and prettier packages (#291) #237

chore(deps): update eslint and prettier packages (#291)

chore(deps): update eslint and prettier packages (#291) #237

Workflow file for this run

name: Release and Publish
on:
push:
branches:
- main
- alpha
- beta
- next
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- run: npm run lint
- run: npm run types
- run: npm test
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}