Skip to content

chore(deps): update wagoid/commitlint-github-action action to v6 (#314) #242

chore(deps): update wagoid/commitlint-github-action action to v6 (#314)

chore(deps): update wagoid/commitlint-github-action action to v6 (#314) #242

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
# reduces noise from npm post-install scripts
DISABLE_OPENCOLLECTIVE: true
OPEN_SOURCE_CONTRIBUTOR: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: install
run: npm ci
- name: lint
run: npm run lint
- name: typecheck
run: npm run typecheck
- name: test
run: npm run test
- name: release
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}