Skip to content

pr suggestions

pr suggestions #1032

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test-deploy:
name: Test able to deploy to npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Compile
run: npm run build
- name: Publish test
run: npm publish --dry-run
test-plugin:
name: Test unit tests for plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run plugin tests
run: npm run test-plugin