Skip to content

Merge pull request #1213 from bryceosterhaus/eslintPluginUpdate #1679

Merge pull request #1213 from bryceosterhaus/eslintPluginUpdate

Merge pull request #1213 from bryceosterhaus/eslintPluginUpdate #1679

Workflow file for this run

# Based on: https://github.com/actions/starter-workflows/blob/master/ci/node.js.yml
name: lockfile
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CI: true
yarn-cache-name: yarn-cache-3
yarn-cache-path: .yarn
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Use or update Yarn cache
uses: actions/cache@v2
with:
path: ${{ env.yarn-cache-path }}
key: ${{ runner.os }}-${{ env.yarn-cache-name }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --cache-folder=${{ env.yarn-cache-path }}
- run: git diff --quiet -- yarn.lock