Skip to content

Bump ip from 2.0.0 to 2.0.1 #126

Bump ip from 2.0.0 to 2.0.1

Bump ip from 2.0.0 to 2.0.1 #126

Workflow file for this run

name: "test"
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install
run: npm install
- name: lint
run: npm run lint
- name: build lib
run: npm run build:lib
- name: build demo
run: npm run build
- name: e2e
run: npm run cy:ci