Skip to content

Bump ip from 2.0.0 to 2.0.1 #238

Bump ip from 2.0.0 to 2.0.1

Bump ip from 2.0.0 to 2.0.1 #238

Workflow file for this run

name: test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 'latest'
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --prefer-offline --frozen-lockfile
- name: Install playwright
run: pnpm exec playwright install --with-deps
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v4
- name: Test
run: pnpm exec nx affected -t lint,test,e2e