Last active
April 3, 2025 15:44
-
-
Save bsommardahl/016969fc36d9ddd74c42d797a8659837 to your computer and use it in GitHub Desktop.
A bad YAML file... please help me fix it!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name:Validate Data | |
on: | |
push: pull_request: | |
jobs: | |
validate-data: | |
runs-on:ubuntu-latest | |
steps: | |
- uses:actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "12" | |
- name: Validate workflows run: | | |
npm ci | |
npx ts-node-script ./index.ts | |
working-directory: ./script/validate-data |
---
name: Validate Data
on:
push: null
pull_request: null
jobs:
validate-data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "12"
- name: Validate workflows
run: |
npm ci
npx ts-node-script ./index.ts
working-directory: ./script/validate-data
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
name : Validate Data
on :
push : pull_request
jobs
validate-data
runs-on:ubuntu-latest
steps
- uses actions/checkout@v2