Skip to content

build(deps-dev): bump @companion-module/tools from 2.0.2 to 2.0.4 (#14) #66

build(deps-dev): bump @companion-module/tools from 2.0.2 to 2.0.4 (#14)

build(deps-dev): bump @companion-module/tools from 2.0.2 to 2.0.4 (#14) #66

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