Skip to content

Improved some things to the Migration tutorials and added directory where the two paper configs are #12

Improved some things to the Migration tutorials and added directory where the two paper configs are

Improved some things to the Migration tutorials and added directory where the two paper configs are #12

Workflow file for this run

name: "Format check"
on:
- push
- pull_request
jobs:
format:
# run on all push events or on PR syncs not from the same repo
if: github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
uses: borales/actions-yarn@v5
with:
cmd: install
- name: Check format
uses: borales/actions-yarn@v5
with:
cmd: format:check