Skip to content

Merge pull request #270 from oddbird/dependabot/npm_and_yarn/ip-2.0.1 #106

Merge pull request #270 from oddbird/dependabot/npm_and_yarn/ip-2.0.1

Merge pull request #270 from oddbird/dependabot/npm_and_yarn/ip-2.0.1 #106

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['14', 'lts/*']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint:ci