Skip to content

8.2.2-beta.0

8.2.2-beta.0 #171

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno and run tests across stable and canary builds on Windows, Ubuntu and macOS.
# For more information see: https://github.com/denoland/setup-deno
name: Build Beta
on:
push:
branches: [beta]
jobs:
build_beta:
runs-on: macos-latest # runs a publish on macOS
steps:
- name: Setup repo
uses: actions/checkout@v4
- run: git push --delete origin beta
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache pnpm
uses: actions/cache@v4
with:
key: ${{ runner.os }}-pnpm-dep
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
- name: Install dependencies
run: pnpm i
- name: Run build
run: pnpm beta-mac
env:
USE_HARD_LINKS: false
GH_TOKEN: ${{ github.token }}