Bump typescript from 3.9.10 to 5.2.2 #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |