Skip to content

Merge pull request #2011 from woocommerce/add/tip-pmax-asset-import #2024

Merge pull request #2011 from woocommerce/add/tip-pmax-asset-import

Merge pull request #2011 from woocommerce/add/tip-pmax-asset-import #2024

Workflow file for this run

name: JavaScript Unit Tests
on:
push:
branches:
- trunk
- develop
paths:
- "**.js"
- package.json
- package-lock.json
- .github/workflows/js-unit-tests.yml
pull_request:
paths:
- "**.js"
- package.json
- package-lock.json
- .github/workflows/js-unit-tests.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
UnitTests:
name: JavaScript unit tests
runs-on: ubuntu-latest
env:
FORCE_COLOR: 2
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Prepare node
uses: woocommerce/grow/prepare-node@actions-v1
with:
node-version-file: ".nvmrc"
- name: Run JavaScript unit tests
run: npm run test:js