Skip to content

fix(deps): update dependency typescript to v5.7.2 (#30) #84

fix(deps): update dependency typescript to v5.7.2 (#30)

fix(deps): update dependency typescript to v5.7.2 (#30) #84

Workflow file for this run

name: CI
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [ main ]
pull_request:
branches: [ main, ci/** ]
types:
- opened
- synchronize
- reopened
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: 18
- name: Install dependencies client
run: |
npm i --force
- name: Run tests
run: npm test
release:
name: Release
if: github.ref == 'refs/heads/main' && !startsWith( github.event.commits[0].message, 'build(deps-dev)') && !startsWith( github.event.commits[0].message, 'ci(uplift)')
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN_UPLIFT }}
- name: Release
if: github.ref == 'refs/heads/main'
uses: gembaadvantage/[email protected]
with:
args: release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_UPLIFT }}