Skip to content

chore(deps-dev): bump typescript from 5.3.3 to 5.4.5 #515

chore(deps-dev): bump typescript from 5.3.3 to 5.4.5

chore(deps-dev): bump typescript from 5.3.3 to 5.4.5 #515

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
strategy:
matrix:
node-version: ["16.x", "18.x"]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
name: "lint in ${{ matrix.platform }} ${{ matrix.node-version }}"
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: lint
run: |
yarn install --immutable
yarn lint
test:
strategy:
matrix:
node-version: ["16.x", "18.x"]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
name: "test in ${{ matrix.platform }} ${{ matrix.node-version }}"
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: test
run: |
yarn install --immutable
yarn build
yarn test