Skip to content

chore(comments): Added some comments #8

chore(comments): Added some comments

chore(comments): Added some comments #8

Workflow file for this run

name: check_app.yml
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '20.x', '21.x' ]
defaults:
run:
working-directory: teamized/app
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Check prettier
run: npm run prettier-check
- name: Check typescript
run: npm run typescript-check