Skip to content

Commit

Permalink
Run 'validate' on all pushes/PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
julianna-langston committed Oct 18, 2024
1 parent f3df166 commit bee7c49
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Validate

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: npm install

- name: Validate
run: npm run validate


0 comments on commit bee7c49

Please sign in to comment.