Skip to content

Added a favicon. Tested the pages #29 #27 #26 Everything is working. … #136

Added a favicon. Tested the pages #29 #27 #26 Everything is working. …

Added a favicon. Tested the pages #29 #27 #26 Everything is working. … #136

Workflow file for this run

name: SimplePipeline
on:
push:
branches: [ main ]
jobs:
LintTestAndDeploy:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Install Netlify CLI
run: npm install -g netlify-cli
- name: Install Dependencies
run: npm install
- name: Run Linting
run: npm run lint
- name: Run Tests
run: npm test
- name: Deploy
run: npm run deploy:prod
env:
CI: true
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}