Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CesiumGS/gltf-pipeline
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: 2gis/gltf-pipeline
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 29, 2024

  1. Update build.yml

    Danil Bubnov committed Jan 29, 2024
    Copy the full SHA
    4b6869a View commit details
Showing with 13 additions and 13 deletions.
  1. +13 −13 .github/workflows/build.yml
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
run-name: build
on:
push:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
name: Build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 20 ]
name: Node ${{ matrix.node }}
os: [ linux, macos, windows ]
name: Build ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
node-version: 18.5.0
- run: npm install
- run: npm run eslint
- run: npm run prettier-check
- run: npm run test -- --failTaskOnError --suppressPassed
- run: npm install -g pkg
- run: pkg . --targets latest-${{ matrix.os }}-x64
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: gltf-pipeline-${{ matrix.os }}
path: gltf-pipeline*