Skip to content

Update ui kitten components #3

Update ui kitten components

Update ui kitten components #3

name: Build
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
jobs:
build:
name: Running TypeScript compiler, TSLint and Jest
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'yarn'
- name: Install
run: yarn install --prefer-offline
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test