wip actions #10
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: GitHub Actions Demo | ||
run-name: Tests before push | ||
on: [push] | ||
jobs: | ||
front_end_tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "Github action event : ${{ github.event_name }}." | ||
- run: echo "🔎 Branc name is ${{ github.ref }}" | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 |