Skip to content

Release

Release #239

Workflow file for this run

name: Pipeline
on:
push:
branches:
- master
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
fail-fast: true
env:
YARN_IGNORE_NODE: 1
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: moonrepo/setup-toolchain@v0
with:
auto-install: true
- uses: moonrepo/tool-version-action@v1
with:
node: ${{ matrix.node-version }}
- run: yarn install --immutable
- run: yarn setup
- run: moon ci --log debug --color
env:
MOONBASE_SECRET_KEY: ${{ secrets.MOONBASE_SECRET_KEY }}
MOONBASE_ACCESS_KEY: ${{ secrets.MOONBASE_ACCESS_KEY }}
- uses: moonrepo/run-report-action@v1
if: success() || failure()
with:
access-token: ${{ secrets.GITHUB_TOKEN }}
matrix: ${{ toJSON(matrix) }}