Skip to content

build(deps-dev): bump @types/node from 20.9.1 to 20.11.15 #181

build(deps-dev): bump @types/node from 20.9.1 to 20.11.15

build(deps-dev): bump @types/node from 20.9.1 to 20.11.15 #181

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- name: Test
run: |
npm install
npx tsc
npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
- name: Build
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist