Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

chore(deps-dev): bump typescript from 5.2.2 to 5.3.3 #2198

chore(deps-dev): bump typescript from 5.2.2 to 5.3.3

chore(deps-dev): bump typescript from 5.2.2 to 5.3.3 #2198

Workflow file for this run

name: Build
on:
pull_request_target:
push:
branches:
- master
permissions: write-all
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: 14
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test
- run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Run tests
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm run coverage
coverageLocations: ${{github.workspace}}/coverage/lcov.info:lcov
- if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]'
uses: actions/github-script@v6
with:
github-token: ${{ secrets.OWNER_GITHUB_TOKEN }}
script: |
github.rest.pulls.createReview({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.number,
event: 'APPROVE'
})
github.rest.pulls.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.number
})