Skip to content

fix folder name
.github/workflows/LintAndTest.yml #1 .github/workflows/LintAndTest.yml #1

Workflow file for this run

Workflow file

name: Lint & Test
on:
pull_request:
types: [opened, edited, reopened, ready_for_review]
branches:
- master
- develop
jobs:
check-pr-title-format:
runs-on: ubuntu-20.04

Check failure on line 12 in .github/workflows/LintAndTest.yml

GitHub Actions / .github/workflows/LintAndTest.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- uses: actions/setup-node@v2
with:
node-version: '10'
steps:
- name: Install Dependencies
run: |
yarn install --frozen-lockfile
- name: Build Licenses
run: |
node ./tools/licenses/fetchLicenses.js
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test