Skip to content

Bump body-parser and express #174

Bump body-parser and express

Bump body-parser and express #174

Workflow file for this run

name: "build"
on: [push, pull_request]
env:
SKIP_CODESIGN: 1
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: test
run: |
npm ci
- name: release
run: |
node release/package-all.js --os linux --arch amd64
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
- name: test
run: |
npm ci
- name: release
run: |
node release/package-all.js --os windows --arch amd64
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v5
with:
go-version: '^1.22.1'
- name: test
run: |
npm ci
- name: release
run: |
node release/package-all.js --os darwin --arch amd64