Skip to content

Add Smart CDN Signature Auth helper #105

Add Smart CDN Signature Auth helper

Add Smart CDN Signature Auth helper #105

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install tsx
run: npm install -g tsx
- uses: shivammathur/setup-php@v2
# https://github.com/boyney123/github-actions/blob/HEAD/src/actions/setup-php.md
with:
php-version: '8.1'
tools: php-cs-fixer, phpunit
- uses: ramsey/composer-install@v2
with:
dependency-versions: locked
composer-options: '--ignore-platform-reqs'
- name: Test
run: |
make test-all-coverage
env:
TRANSLOADIT_KEY: ${{secrets.TEST_ACCOUNT_KEY}}
TRANSLOADIT_SECRET: ${{secrets.TEST_ACCOUNT_SECRET}}
TEST_NODE_PARITY: 1
- uses: codecov/codecov-action@v2
with:
files: ./build/logs/clover.xml
fail_ci_if_error: true
verbose: true