Skip to content

chore: remove ts-loader dependency (followup to 645dc51, webpack to vite) #38

chore: remove ts-loader dependency (followup to 645dc51, webpack to vite)

chore: remove ts-loader dependency (followup to 645dc51, webpack to vite) #38

Workflow file for this run

name: Node.js workflow
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build:all
- name: Deploy documentation
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <support+actions@github.com>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event_name == 'push' }}
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true