feat: add img base64 for lesson 07 #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Sanity Check | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Packages | |
run: | | |
npm install | |
- name: Lint | |
run: | | |
npm run lint | |
- name: Build | |
run: | | |
npx reveal-md lessons/ --static dist | |
rsync -a -r lessons/ dist/ |