Skip to content

chore(deps): update dependency typescript to v5.7.2 #1697

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

chore(deps): update dependency typescript to v5.7.2 #1697

Workflow file for this run

name: Automated tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/[email protected]
with:
cache: pnpm
node-version: 20
registry-url: https://registry.npmjs.org
- run: pnpm install
env:
CI: true
- run: pnpm build
env:
CI: true
- run: pnpm test
env:
CI: true
- run: pnpm lint
env:
CI: true
- name: publish
if: startsWith(github.ref, 'refs/tags/v')
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}