Skip to content

Merge pull request #90 from mlutcss/dependabot/npm_and_yarn/webpack-d… #51

Merge pull request #90 from mlutcss/dependabot/npm_and_yarn/webpack-d…

Merge pull request #90 from mlutcss/dependabot/npm_and_yarn/webpack-d… #51

Workflow file for this run

name: Test
on:
pull_request:
paths:
- 'packages/**'
- 'test/**'
- '.github/workflows/test.yml'
- 'package.json'
- 'package-lock.json'
branches:
- '**'
push:
branches:
- master
jobs:
test:
name: Check that lint and tests pass
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:packages
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Test plugins
run: npm run test:plugins