Skip to content

Bump tar from 4.4.18 to 6.2.1 #7678

Bump tar from 4.4.18 to 6.2.1

Bump tar from 4.4.18 to 6.2.1 #7678

Workflow file for this run

name: Build, Test, Lint for Main
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 15
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: pnpm/action-setup@v2.2.2
name: Install pnpm
id: pnpm-install
with:
version: 9
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Build Types
run: pnpm types
- name: Set NPMRC
run: echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Publish tagged PR
if: >
matrix.os == 'ubuntu-latest' &&
github.event_name == 'pull_request' &&
contains(github.event.pull_request.labels.*.name, 'tagged')
continue-on-error: true
run: |
echo running on branch ${BRANCH_NAME}
pnpm version:snapshot
pnpm publish -r --tag ${BRANCH_NAME} --no-git-checks --access public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
- name: Test
run: pnpm test
- name: Lint
if: matrix.os == 'ubuntu-latest'
run: pnpm lint