More Corpora Commander - but, it's time to start on v3 #58
This file contains hidden or 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
| # .github/workflows/ci-typescript.yml | |
| name: TypeScript CI | |
| on: | |
| pull_request: | |
| paths: | |
| - 'ts/commander/**' | |
| - '.github/**' | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18' | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Install dependencies | |
| working-directory: ts/commander | |
| run: pnpm install --frozen-lockfile | |
| - name: Build | |
| working-directory: ts/commander | |
| run: pnpm run build |