Skip to content

Test workflow as steps #6

Test workflow as steps

Test workflow as steps #6

Workflow file for this run

name: Lint and test
on:
push:
branches:
- "main"
pull_request:
jobs:
checkout-app:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn install
- run: yarn lint
- run: yarn prettier --check
- run: yarn test
if: ${{ always() }}