Skip to content

Very rough preperatory work for dealing with bindings #16

Very rough preperatory work for dealing with bindings

Very rough preperatory work for dealing with bindings #16

Workflow file for this run

name: Check types and formatting
on:
pull_request: {}
push:
branches: [main]
jobs:
check:
name: Check types and formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: NPM cache
uses: actions/setup-node@v3
with:
cache: npm
- name: Install dependencies
run: npm install
- name: Check types
run: npm run ts:check
- name: Check formatting
run: npm run prettier:check