Skip to content

chore(deps): bump ip from 1.1.5 to 1.1.9 in /examples/gatsby #586

chore(deps): bump ip from 1.1.5 to 1.1.9 in /examples/gatsby

chore(deps): bump ip from 1.1.5 to 1.1.9 in /examples/gatsby #586

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }}
runs-on: ubuntu-20.04
strategy:
matrix:
node: ['18.x']
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
with:
install-command: yarn install --ignore-engines
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --coverage --maxWorkers=2
- name: Build
run: yarn build