Skip to content

fix: test out workflow publishing changing trigger to main #39

fix: test out workflow publishing changing trigger to main

fix: test out workflow publishing changing trigger to main #39

Workflow file for this run

name: Build and Test NODE
on:
push:
-branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run generate-plugin-schema
- run: npm run test:ci