Skip to content

Bump @actions/core from 1.10.0 to 1.11.1 #1722

Bump @actions/core from 1.10.0 to 1.11.1

Bump @actions/core from 1.10.0 to 1.11.1 #1722

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Lint
run: |
yarn lint
yarn format