Skip to content

Upgrade to v0.1.0-alpha.5 #91

Upgrade to v0.1.0-alpha.5

Upgrade to v0.1.0-alpha.5 #91

Workflow file for this run

name: Run Code Analysis
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
tags:
- "v*"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: make install
- name: Run Linter Checks
run: make lint
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: make install
- name: Run Typechecking Checks
run: make typecheck