Skip to content

feat: add typescript, yarn, prettier #22

feat: add typescript, yarn, prettier

feat: add typescript, yarn, prettier #22

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Setup dependencies
run: yarn install --immutable
# - name: Run lint
# run: yarn lint
- name: Run build
run: yarn build
- name: Run tests
run: yarn test