Skip to content

Bump ip-address from 10.2.0 to 10.4.0 in the npm_and_yarn group across 1 directory #84

Bump ip-address from 10.2.0 to 10.4.0 in the npm_and_yarn group across 1 directory

Bump ip-address from 10.2.0 to 10.4.0 in the npm_and_yarn group across 1 directory #84

Workflow file for this run

name: Linter
on:
push:
branches:
- main
pull_request:
branches: '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache
uses: actions/cache@v4
id: cache
with:
path: '**/node_modules'
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn --immutable
if: steps.cache.outputs.cache-hit != 'true'
- name: Lint
run: yarn lint