Skip to content

chore(deps): update dependency typescript to v5 #1541

chore(deps): update dependency typescript to v5

chore(deps): update dependency typescript to v5 #1541

Workflow file for this run

name: 📆⛱️
on:
- push
- pull_request
env:
TZ: "Europe/Paris"
jobs:
build:
runs-on: ubuntu-latest
strategy:
# e.g. if lint fails, continue to the unit tests anyway
fail-fast: false
matrix:
node-version:
- lts/*
- 16.x
steps:
- uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Installing
run: yarn --frozen-lockfile --perfer-offline --link-duplicates
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test --coverage --coverageReporters=lcov --coverageReporters=text-summary
- name: Send test coverage to codecov
continue-on-error: true
uses: codecov/codecov-action@v3.1.0
release:
needs:
- build
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Set up Node
uses: actions/setup-node@v3.4.1
with:
node-version: 14.x
- uses: actions/checkout@v3.0.2
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
env:
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}