[ CURRICULUM ][ WEEK 4 ] Added TinyPNG tool #2
This file contains 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: "Tests: for Week 03 - Day 02 What is CSS" | |
on: | |
push: | |
# Run tests only when the following folders/files have changed during the push: | |
branches: | |
- 'main' | |
paths: | |
- user/week03/exercises/day02/** | |
jobs: | |
WHAT_IS_CSS: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Styling a biography page | |
- name: "Styling a biography page > Checks file existence: blog.html" | |
uses: andstor/file-existence-action@v2 | |
with: | |
files: "user/week03/exercises/day02/styling_a_biography_page/blog.html" | |
fail: true |