Skip to content

chore(tsoa-deno): Bump runtime/cli version to 6.1.0-rc.1 #43

chore(tsoa-deno): Bump runtime/cli version to 6.1.0-rc.1

chore(tsoa-deno): Bump runtime/cli version to 6.1.0-rc.1 #43

on: [push, pull_request]
name: Build and Test
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18, 20, 21]
os: [macos-latest, ubuntu-latest, windows-latest]
typescript-version: ['^4.9.5', '^5.2.2']
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Check Deno version
run: deno --version
- name: Install Yarn
run: npm install -g yarn
- name: Set resolutions to correct typescript version
uses: jossef/action-set-json-field@v2.1
with:
file: package.json
field: resolutions
value: '{ "typescript": "${{ matrix.typescript-version }}"}'
parse_json: true
# for yarn3
# - name: Set Typescript version
# run: yarn set resolution typescript ${{ matrix.typescript-version }}
- name: Install
run: yarn install --ignore-scripts --no-lockfile
- name: Output ts version
run: yarn tsc --version
- name: Output packages version
run: yarn list
- name: Build
run: yarn run build
- name: Build Deno runtime
run: yarn run build:deno
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test