Skip to content

ttag to TS

ttag to TS #4

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
- run: npm install
- run: npm run ts-check
- run: npm run test
- run: npm run prettier-check
- run: npm run lint