Skip to content

Bump eslint from 8.54.0 to 8.55.0 #83

Bump eslint from 8.54.0 to 8.55.0

Bump eslint from 8.54.0 to 8.55.0 #83

Workflow file for this run

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