Convert to named export #6895
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: support-frontend - typescript | |
on: | |
push: | |
paths: | |
- support-frontend/** | |
jobs: | |
support_frontend_build: | |
name: support-frontend - typescript | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
cache-dependency-path: support-frontend/yarn.lock | |
- name: Install | |
run: yarn | |
working-directory: support-frontend | |
- name: Type check | |
run: yarn tsc | |
working-directory: support-frontend |