Skip to content

chore(deps): update dependency typescript to v5.4.5 #2595

chore(deps): update dependency typescript to v5.4.5

chore(deps): update dependency typescript to v5.4.5 #2595

Workflow file for this run

name: workflow
on: [push]
jobs:
job:
runs-on: ubuntu-latest
container: node:18
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Prepare
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Publish
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/next')
# npm will not execute `prepublisnOnly` lifecycle hook if user is root.
# @see https://github.com/semantic-release/semantic-release/issues/956#issuecomment-431097773
run: |
npm run prepublishOnly
npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}