Skip to content

Bump typescript from 3.9.10 to 5.3.2 #78

Bump typescript from 3.9.10 to 5.3.2

Bump typescript from 3.9.10 to 5.3.2 #78

Workflow file for this run

name: ci
on:
push:
branches: "**"
tags-ignore: "v*"
pull_request:
jobs:
prebuild:
name: Pre-build checks
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Node.js v12
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Fetch dependencies from cache
id: cache-yarn
uses: actions/cache@v3
with:
path: "**/node_modules"
key: yarn-build-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.cache-yarn.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Run yarn lint
run: yarn lint
- name: Run yarn test
run: yarn test