Bump eslint from 8.54.0 to 8.55.0 #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-package: | |
name: Build Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: latest | |
- name: Update Yarn | |
run: corepack enable && yarn set version stable | |
- name: Cache Dependencies | |
uses: actions/[email protected] | |
with: | |
path: .yarn | |
key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install Dependencies | |
run: yarn install | |
- name: Check Package | |
run: yarn check | |
- name: Bundle Package | |
run: yarn bundle | |
- name: Check Differences | |
run: git diff --exit-code HEAD |