Skip to content

build(deps-dev): bump @types/react from 18.2.30 to 18.2.33 #360

build(deps-dev): bump @types/react from 18.2.30 to 18.2.33

build(deps-dev): bump @types/react from 18.2.30 to 18.2.33 #360

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: 16
- name: Test
run: |
npm install
npm run build
npm run type-check
npm run coverage
- name: Upload coverage
uses: codecov/codecov-action@v3
- name: E2E
run: npm run e2e
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist