setup-php/examples/sage.yml

70 lines
2.0 KiB
YAML
Raw Permalink Normal View History

# GitHub Action for roots/sage
name: Testing Sage
on: [push, pull_request]
jobs:
sage:
name: Sage (PHP ${{ matrix.php-versions }} & Node ${{ matrix.node-versions }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
2021-12-15 18:19:10 +07:00
php-versions: ['7.4', '8.0', '8.1']
node-versions: ['16']
steps:
- name: Checkout
2023-09-09 17:53:40 +07:00
uses: actions/checkout@v4
2021-12-15 18:19:10 +07:00
- name: Setup Node.js
2019-11-28 06:47:56 +07:00
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-versions }}
2021-12-15 18:19:10 +07:00
# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring
2021-12-15 18:19:10 +07:00
- name: Check node versions
run: node -v
2021-12-15 18:19:10 +07:00
- name: Get yarn cache
id: yarn-cache
2022-10-12 17:56:11 +07:00
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
2021-12-15 18:19:10 +07:00
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
2021-12-15 18:19:10 +07:00
- name: Get composer cache directory
id: composer-cache
2022-10-12 17:56:11 +07:00
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2021-12-15 18:19:10 +07:00
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
2019-12-28 01:53:51 +07:00
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
2021-12-15 18:19:10 +07:00
- name: Install yarn dependencies
run: yarn -V
2021-12-15 18:19:10 +07:00
- name: Install Composer dependencies
2020-06-19 12:22:35 +07:00
run: composer install --no-progress --prefer-dist --optimize-autoloader
2021-12-15 18:19:10 +07:00
- name: Yarn test and build
run: |
yarn run test
yarn run build
yarn run rmdist
yarn run "build:production"
2021-12-15 18:19:10 +07:00
- name: PHP test
2021-12-15 18:19:10 +07:00
run: composer test