Skip to content

Merge pull request #2 from Agoric/rs-chores-for-container #6

Merge pull request #2 from Agoric/rs-chores-for-container

Merge pull request #2 from Agoric/rs-chores-for-container #6

Workflow file for this run

name: ESLint Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run ESLint
run: yarn lint