Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,19 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
DAY_OF_WEEK: Mon

steps:
- uses: actions/checkout@v2

- name: "Hello world when it's Monday"
if: ${{ env.DAY_OF_WEEK == 'Mon' }}
run: echo "Hello $FIRST_NAME $middle_name $Last_Name, today is $DAY_OF_WEEK!"
env:
FIRST_NAME: Mona
middle_name: The
Last_Name: Octocat

- name: Install with Yarn
run: yarn
Expand Down