Skip to content

Commit

Permalink
Update normal.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisgoddard authored Mar 6, 2024
1 parent 8d483c4 commit 89907b9
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/normal.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Normal

on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '30 5,17 * * *'
push:
branches: [ "main" ]
pull_request:
Expand All @@ -15,15 +18,23 @@ jobs:
steps:

- name: Install PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@2.21.2
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
#extensions: mbstring

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: "12.x"
# Version Spec of the version to use in SemVer notation.
# It also emits such aliases as lts, latest, nightly and canary builds
# Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
node-version: 'lts/*'
# Set this option if you want the action to check for the latest available version
# that satisfies the version spec.
# It will only get affect for lts Nodejs versions (12.x, >=10.15.0, lts/Hydrogen).
# Default: false
check-latest: true

- name: Checkout Repo
uses: actions/checkout@v3
Expand Down

0 comments on commit 89907b9

Please sign in to comment.