Skip to content

ttag to TS

ttag to TS #3

Workflow file for this run

name: 'ttag_ci'
on:
pull_request:
paths:
- 'src/**/*.ts'
- 'test/**/*.js'
- '.github/workflows/ttag_ci.yml'
- 'package.json'
- 'package-lock.json'
push:
paths:
- 'src/**/*.ts'
- 'test/**/*.js'
- '.github/workflows/ttag_ci.yml'
- 'package.json'
- 'package-lock.json'
jobs:
lints-ts-build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- name: 'Install'
- run: 'npm install'
- name: 'TS check'
- run: 'npm run ts-check'
- name: 'Test'
- run: 'npm run test'
- name: 'Lint'
- run: 'npm run lint'
- name: 'Prettier'
- run: 'npm run prettier-check'