Skip to content

Commit

Permalink
ci: add github action to lint env file
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Hernandez Pellicer committed Jan 14, 2024
1 parent bd37d78 commit b7014f2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint-dotenv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Lint dotenv'

on:
push:

jobs:
build:
name: Lint dotenv
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dotenv
run: curl -sSfL https://git.io/JLbXn | sh -s -- -b usr/local/bin v3.3.0
- name: Run dotenv
run: usr/local/bin/dotenv-linter

0 comments on commit b7014f2

Please sign in to comment.