Skip to content

chore(deps-dev): bump typescript from 4.5.5 to 5.3.3 #911

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

chore(deps-dev): bump typescript from 4.5.5 to 5.3.3 #911

Workflow file for this run

name: CI
on:
push:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Coverage
run: npm run coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}