Skip to content

add api key in gecko terminal URL #1354

add api key in gecko terminal URL

add api key in gecko terminal URL #1354

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs: # each workflow consists of 1+ jobs; by default, all jobs run in parallel
lint: # Lint codebase.
runs-on: ubuntu-latest # host's operating system
steps: # each job consists of 1+ steps
- name: Checkout commit # download the code from triggering commit
uses: actions/checkout@v3
- name: Set Node.js 18.x # Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies 📦
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn lint
- name: Run prettier check
run: yarn prettier