Skip to content

chore(deps): bump tar from 7.5.11 to 7.5.16 #21031

chore(deps): bump tar from 7.5.11 to 7.5.16

chore(deps): bump tar from 7.5.11 to 7.5.16 #21031

Workflow file for this run

name: CI
on: [push, pull_request]
env:
GH_TOKEN: ${{ secrets.CI_NOW_GH_TOKEN }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
GH_PR_NUMBER: ${{ github.event.number }}
GH_PR_REPO: ${{ github.event.pull_request.head.repo.full_name }}
GH_PR_SHA: ${{ github.event.pull_request.head.sha }}
NODE_OPTIONS: "--max-old-space-size=4096"
jobs:
unit_tests:
name: "Unit tests"
runs-on: ubuntu-latest
container: mcr.microsoft.com/playwright:v1.57.0-noble
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "24.13.0"
- name: "Enable yarn v4"
run: |
corepack enable
yarn set version 4.9.2
- uses: actions/cache@v4
with:
path: |
**/node_modules
.eslintcache
.yarn/cache
~/.npm
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: "Install"
run: yarn install --immutable
- name: "Check-all"
run: yarn check-all
- name: "Build"
run: yarn build
- name: "Deploy to vercel"
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false) || (github.event_name == 'push' && github.ref == 'refs/heads/master')
uses: ndlano/reusable-workflows/.github/actions/vercel-deploy@main
continue-on-error: true
with:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
MASTER_ALIAS: "editorial-frontend-master.vercel.app"
REPO_NAME: "editorial-frontend"
- name: "E2E"
run: yarn e2e:headless