Skip to content

build(deps-dev): bump ip from 2.0.0 to 2.0.1 (#543) #242

build(deps-dev): bump ip from 2.0.0 to 2.0.1 (#543)

build(deps-dev): bump ip from 2.0.0 to 2.0.1 (#543) #242

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE_VERSION: 18
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
- name: Cache setup
uses: actions/cache@v4
with:
path: ./*
key: setup-${{ github.sha }}
run:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
command: [lint, test -- --no-watch --no-progress --browsers=ChromeHeadless, build]
steps:
- name: Restore setup
uses: actions/cache@v4
with:
path: ./*
key: setup-${{ github.sha }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Run ${{ matrix.command }}
run: npm run ${{ matrix.command }}