Skip to content

chore(release): update version v1.7.3 #15

chore(release): update version v1.7.3

chore(release): update version v1.7.3 #15

Workflow file for this run

name: CI Dev

Check failure on line 1 in .github/workflows/dev.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dev.yml

Invalid workflow file

(Line: 11, Col: 13): Matrix vector 'os' does not contain any values
on:
push:
branches:
- dev
jobs:
CI-dev:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [] #[windows-latest, ubuntu-latest, macos-latest]
node-version: [] #[18.x, 20.x, 22.x]
steps:
- name: Checkout do código
uses: actions/checkout@v4
- name: Install CUPS (Ubuntu)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libcups2-dev build-essential python-is-python3 gcc g++ make python3-dev
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib g++-multilib libc6-dev-i386 linux-libc-dev:i386 libcups2-dev:i386
sudo ldconfig
- name: Configurar Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Instalar dependências
run: npm install --no-save
- name: Rebuild do projeto
run: npm run rebuild