Skip to content

Bump version 2.0.0-rc.12 #107

Bump version 2.0.0-rc.12

Bump version 2.0.0-rc.12 #107

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'