Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Bump @babel/traverse from 7.22.20 to 7.23.2 #10

Bump @babel/traverse from 7.22.20 to 7.23.2

Bump @babel/traverse from 7.22.20 to 7.23.2 #10

Workflow file for this run

name: Prebuild Binaries
on:
pull_request:
branches: [main]
jobs:
build:
name: Prebuild Binaries for ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x]
os: [ubuntu, macos, windows]
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 30
steps:
- name: Setup Dependencies
if: matrix.os == 'ubuntu'
run: |
sudo dpkg --add-architecture i386
sudo apt-get update -y -qq
sudo apt-get install -y g++-multilib gcc-multilib libcups2-dev libcups2-dev:i386 libc6-dev-i386 linux-libc-dev linux-libc-dev:i386
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://npm.pkg.github.com
scope: '@casamagalhaes'
cache: npm
- run: npm install-ci-test
- name: Set release version
run: npm --no-git-tag-version version $TAG
env:
TAG: ${{ github.event.release.tag_name }}
- name: Apply patches
run: npm run apply-patches
- name: Build unix binaries 32 bits
if: matrix.os != 'macos'
run: npm run prebuild -- --strip --arch ia32
- name: Build unix binaries 64 bits
run: npm run prebuild -- --strip --arch x64