Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

chore(deps): update dependency typescript to v5 #286

chore(deps): update dependency typescript to v5

chore(deps): update dependency typescript to v5 #286

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "yarn"
cache-dependency-path: "yarn.lock"
- name: Install
run: yarn install --immutable
- name: Test
run: yarn test
- name: Build
run: yarn build