chore(deps): update dependency npm-run-all2 to v6.2.3 (#257) #1635
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
schedule: | |
- cron: '0 1 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
HUSKY: 0 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: corepack enable | |
- run: pnpm install | |
- run: pnpm prettier | |
build: | |
needs: | |
- lint | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.distro == 'jammy' }} | |
strategy: | |
# some versions are not builable on jammy | |
fail-fast: false | |
matrix: | |
distro: | |
- focal | |
- jammy | |
arch: | |
- x86_64 | |
- aarch64 | |
env: | |
DISTRO: ${{ matrix.distro }} # build target, name required by binary-builder | |
ARCH: ${{ matrix.arch }} # build target, name required by binary-builder | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: binary-builder | |
uses: containerbase/internal-tools@b6d2b362cb282e8088211f792cc2211529936635 # v3.4.17 | |
with: | |
command: binary-builder | |
dry-run: ${{github.ref != 'refs/heads/main'}} | |
token: ${{ secrets.GITHUB_TOKEN }} |