Skip to content

setup template generator #100

setup template generator

setup template generator #100

Workflow file for this run

name: Typescript-2023
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js and pnpm
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Execute Unit tests
run: |
cd Typescript/2023
npm i
npm run test