Skip to content

We are verifying that everything is in order πŸš€ #3

We are verifying that everything is in order πŸš€

We are verifying that everything is in order πŸš€ #3

Workflow file for this run

name: Format and check broken links
run-name: We are verifying that everything is in order πŸš€
on:
pull_request:
branches:
- master
jobs:
install:
name: "Install"
runs-on: ubuntu-latest
steps:
- name: Checkout files
uses: actions/checkout@v3
- name: Install node_modules
working-directory: ./website
uses: OffchainLabs/actions/node-modules/install@main

Check failure on line 19 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Format and check broken links

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 19, Col: 9): Unexpected value 'uses' .github/workflows/main.yml (Line: 17, Col: 9): Required property is missing: run
check-formatting:
name: "Check Formatting"
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout files
uses: actions/checkout@v3
- name: Restore node_modules
working-directory: ./website
uses: OffchainLabs/actions/node-modules/restore@main
- name: Check formatting with Prettier
working-directory: ./website
run: yarn format:check