Skip to content

build(deps): bump @companion-module/base from 1.10.0 to 1.11.2 #73

build(deps): bump @companion-module/base from 1.10.0 to 1.11.2

build(deps): bump @companion-module/base from 1.10.0 to 1.11.2 #73

Workflow file for this run

name: Node CI
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Prepare Environment
run: |
yarn install
env:
CI: true
- name: prettier
run: |
yarn prettier --check .
# - name: Test jest
# run: |
# yarn test
# env:
# CI: true
- name: Test package
run: |
yarn companion-module-build
env:
CI: true
- name: Save artifact
uses: actions/upload-artifact@v4
with:
name: module
path: ${{github.workspace}}/pkg.tgz