pear seed fixes #6606
Workflow file for this run
This file contains hidden or 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 Status | |
| on: | |
| schedule: | |
| - cron: '0 10 * * *' | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| repository_dispatch: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| steps: | |
| - uses: holepunchto/actions/node-base@v1 | |
| - run: npm run lint | |
| build: | |
| name: ${{ matrix.host }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| host: linux-x64 | |
| - os: ubuntu-24.04-arm | |
| host: linux-arm64 | |
| - os: macos-latest | |
| host: darwin-arm64 | |
| - os: windows-latest | |
| host: win32-x64 | |
| - os: windows-11-arm | |
| host: win32-arm64 | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Setup repo | |
| uses: holepunchto/actions/.github/steps/setup-repo@v1 | |
| - name: Install w/ dev deps | |
| run: npm install | |
| - name: Build Local Runtime | |
| run: npm run make | |
| - name: Install Bare | |
| run: npm i -g bare-runtime | |
| - name: Test | |
| run: npm test |