Skip to content

Enable SRT by default #94

Enable SRT by default

Enable SRT by default #94

Workflow file for this run

name: Deploy Tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
test:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.sha || github.sha}}
- uses: actions/setup-node@v3
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build