Skip to content

feat: credo 0.5.0 support (#87) #312

feat: credo 0.5.0 support (#87)

feat: credo 0.5.0 support (#87) #312

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-22.04
name: Validate
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
run: yarn install
- name: Compile
run: yarn build
- name: Linting
run: yarn lint
- name: Prettier
run: yarn check-format
- name: Check Types
run: yarn check-types