Skip to content

Upgrade submodules #106

Upgrade submodules

Upgrade submodules #106

Workflow file for this run

name: Lint
on:
pull_request:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: |
yarn --version
yarn install
- name: Lint source files
run: |
yarn run lint
env:
NODE_OPTIONS: '--max-old-space-size=4096'