Skip to content

feat(andax): add docs for git_tags andax function #268

feat(andax): add docs for git_tags andax function

feat(andax): add docs for git_tags andax function #268

Workflow file for this run

name: Next.js
on:
pull_request:
push:
branches:
- main
- next
permissions:
contents: read
env:
NEXT_TELEMETRY_DISABLED: 1
FORCE_COLOR: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set Up PNPM
uses: pnpm/setup@4700d737c3d7a2e7199f3d42a920f0bf7f34e411 # v2.0.1
with:
version: 11
cache: true
runtime: node@lts
- name: Cache build
id: cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Build with Next.js
run: pnpm run build