Add tests #17
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22.x | |
cache: "npm" | |
- run: npm ci | |
- run: npm test | |
create: | |
name: Create | |
strategy: | |
matrix: | |
os: [ubuntu] | |
node-version: [22.x] | |
package-manager: [npm, yarn, pnpm] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
if: matrix.package-manager == 'pnpm' | |
with: | |
version: 9 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: ${{ matrix.package-manager }} install | |
env: | |
NODE_ENV: production | |
- run: npm install --global . | |
if: matrix.package-manager == 'npm' | |
- run: yarn link | |
if: matrix.package-manager == 'yarn' | |
- run: pnpm link --global | |
if: matrix.package-manager == 'pnpm' | |
- run: ${{ matrix.package-manager }} create ts-node new-project | |
working-directory: ${{ runner.temp }} | |
- run: ${{ matrix.package-manager }} install | |
working-directory: ${{ runner.temp }}/new-project | |
- run: ${{ matrix.package-manager }} run build | |
working-directory: ${{ runner.temp }}/new-project | |
- run: ${{ matrix.package-manager }} test | |
working-directory: ${{ runner.temp }}/new-project |