Skip to content

chore(deps): bump tar from 6.1.11 to 6.2.1 #1993

chore(deps): bump tar from 6.1.11 to 6.2.1

chore(deps): bump tar from 6.1.11 to 6.2.1 #1993

Workflow file for this run

name: Push CI
on: [push]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Checks
run: yarn run checks
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Build
run: yarn run build
- name: Check nothing was forgotten before commit
run: yarn run repository-check-dirty
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Prettier
run: yarn run lint:prettier
- name: Typescript
run: yarn run tsc
- name: Eslint
run: yarn run lint:eslint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Test
run: yarn run test
test-e2e:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: E2E testing
run: yarn ./@todo-example/nextjs run test:e2e