diff --git a/.github/workflows/auto-deploy-pages.yml b/.github/workflows/auto-deploy-pages.yml new file mode 100644 index 0000000..5c7a0d5 --- /dev/null +++ b/.github/workflows/auto-deploy-pages.yml @@ -0,0 +1,25 @@ +name: Auto Deploy Pages + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Install dependencies + run: npm install + + - name: Run deploy script + run: npm run deploy \ No newline at end of file diff --git a/src/App.js b/src/App.js index 3784575..90dca0a 100644 --- a/src/App.js +++ b/src/App.js @@ -7,7 +7,7 @@ function App() {
logo

- Edit src/App.js and save to reload. + Edit src/App.js and save.