Skip to content

publish: vue-output-target v0.11.7, angular-output-target v1.1.1 #1477

publish: vue-output-target v0.11.7, angular-output-target v1.1.1

publish: vue-output-target v0.11.7, angular-output-target v1.1.1 #1477

Workflow file for this run

name: Build & Test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
jobs:
build_and_test:
strategy:
matrix:
os: ['macos-latest', 'windows-latest']
name: Node on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- name: 📥 Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 📦 Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: 🟢 Use Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: .nvmrc
cache: 'pnpm'
- name: 🔧 Install Dependencies
run: pnpm install
- name: 🏗️ Build
run: pnpm run build
- name: 🧪 Test
run: pnpm test
- name: 🔍 Check Git Context
uses: ./.github/workflows/actions/check-git-context
format:
name: Format
uses: ./.github/workflows/format.yml