Skip to content

fix css

fix css #22

Workflow file for this run

name: Netlify Preview
on:
pull_request:
jobs:
preview:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Netlify CLI
run: npm install -g netlify-cli
- name: Build and deploy preview
run: |
netlify deploy --dir=Lets-Learn-Github/contributors --message "Preview for PR ${{ github.event.number }}"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}