Skip to content

Merge pull request #1546 from kevinchappell/dependabot/npm_and_yarn/w… #154

Merge pull request #1546 from kevinchappell/dependabot/npm_and_yarn/w…

Merge pull request #1546 from kevinchappell/dependabot/npm_and_yarn/w… #154

Workflow file for this run

name: Run Jest Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
env:
CI: true
run: npm install
- name: Lint
run: npm run lint
- name: Build the plugin
run: npm run build:all
- name: Run Jest
run: npm run test