Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test=keys
10 changes: 3 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- name: Check disallowed files .env
run: |
# Searches for .env files in the root directory and its subdirectories
if git ls-files | grep -q '\.env$'; then
echo "Error: .env files are not allowed."
exit 1
if find . -type f -name '.env' | grep -q '\.env$'; then
echo "Error: Archivos .env no están permitidos."
exit 1
fi

- name: Set up NodeJS
Expand All @@ -39,7 +39,3 @@ jobs:

- name: Install dependencies
run: npm install


- name: Build project
run: npm run build
7 changes: 0 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,6 @@ web_modules/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
Expand Down