Skip to content

chore: bump prettier from 3.7.2 to 3.7.4 (#296) #223

chore: bump prettier from 3.7.2 to 3.7.4 (#296)

chore: bump prettier from 3.7.2 to 3.7.4 (#296) #223

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
permissions:
id-token: write
contents: write
pull-requests: write
issues: write
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Test
run: |
npm ci
npm i --no-save @wfcd/items@latest
npm i --no-save warframe-worldstate-data@latest
npm run lint
npx commitlint --from=HEAD~1
npm test
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}