Skip to content

Running checks βœ… #24

Running checks βœ…

Running checks βœ… #24

Workflow file for this run

name: Run checks
run-name: Running checks βœ…
on:
push:
branches:
- feature/*
jobs:
checks:
runs-on: ubuntu-latest
name: Checks
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Yarn install
run: yarn install --frozen-lockfile
- name: Test
run: yarn run test