Skip to content

Merge pull request #130 from xwp/feature/gtm #305

Merge pull request #130 from xwp/feature/gtm

Merge pull request #130 from xwp/feature/gtm #305

Workflow file for this run

name: Test and Build
on: push
concurrency:
group: ${{ github.ref }}-ci
cancel-in-progress: true
jobs:
test:
name: Lint, Test and Build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Setup PHP with Composer
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: composer:v1
- name: Set Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Start the wp-env environment
run: npm run env start
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Release
run: npm run release
- name: Add release ZIP
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: site-performance-tracker.zip