Skip to content

Updated to 0.1.5 (to the main branch) (#29) #13

Updated to 0.1.5 (to the main branch) (#29)

Updated to 0.1.5 (to the main branch) (#29) #13

Workflow file for this run

name: Build
on:
push:
branches: ["main", "development"]
pull_request:
branches: ["main", "development"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Typecheck
run: yarn typecheck
timeout-minutes: 1
- name: Build
run: yarn build
timeout-minutes: 1