Skip to content

chore: bump typescript from 5.4.3 to 5.4.4 (#174) #98

chore: bump typescript from 5.4.3 to 5.4.4 (#174)

chore: bump typescript from 5.4.3 to 5.4.4 (#174) #98

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Test
run: |
npm ci
npm i --no-save warframe-items@latest
npm i --no-save warframe-worldstate-data@latest
npm run lint
npx commitlint --from=HEAD~1
npm test
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
branches: |
['main']