Skip to content

Commit

Permalink
Merge branch 'main' of github.com:moisesAlc/ReactBasic
Browse files Browse the repository at this point in the history
  • Loading branch information
moisesAlc committed May 17, 2024
2 parents f4e6b50 + 8c76e7c commit 12c3964
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/hackathon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ permissions:
contents: write
pages: write
jobs:
run-eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Configure Node
uses: actions/setup-node@v1
with:
node-version: '18'

- name: Run linter 🔎
run: |
npm ci
npx eslint ./src/App.js
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
#push:
# branches:
# - main
permissions:
contents: write
pages: write
Expand Down

0 comments on commit 12c3964

Please sign in to comment.