Skip to content

DRY the github workflows by making composite setup action #5

DRY the github workflows by making composite setup action

DRY the github workflows by making composite setup action #5

Workflow file for this run

name: Test
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup
uses: './.github/actions/setup'
- name: Run tests
run: yarn workspaces foreach --all run test run