Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbok committed Jul 21, 2023
1 parent 46af5eb commit f7afb3d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
echo "Compile snippets..."
cd tools
npm run compile
4 changes: 4 additions & 0 deletions .github/workflows/lint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
echo "Linting snippets..."
cd tools
npm run lint
16 changes: 16 additions & 0 deletions .github/workflows/validate-content.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: validate-content
run-name: ${{ github.actor }} is validating content
on: [push]
jobs:
lint-snippets:
runs-on: ubuntu-latest
steps:
with:
node-version: 'v19.7.0'
- run: ./lint.sh
compile-snippets:
runs-on: ubuntu-latest
steps:
with:
node-version: 'v19.7.0'
- run: ./compule.sh

0 comments on commit f7afb3d

Please sign in to comment.