Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

build(deps): bump actions/checkout from 3 to 4 #163

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #163

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Lint and Tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Yarn Install
run: yarn install
- name: Linting
run: yarn lint
- name: Typing
run: yarn typescript
- name: Testing
run: yarn test --coverage
- name: Prepare Build
run: yarn prepare