Skip to content

feat(ci cd): check typescript and esLint #4

feat(ci cd): check typescript and esLint

feat(ci cd): check typescript and esLint #4

name: Check TypeScript and ESLint
on:
push:
branches:
- feat/CI-CD
pull_request:
branches:
- feat/CI-CD
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn
working-directory: ./template
- name: Run ESLint
run: yarn lint
working-directory: ./template
- name: Run TypeScript
run: yarn typescript
working-directory: ./template