Skip to content

fix(wordle): fallback to random word if nytimes not accessible #64

fix(wordle): fallback to random word if nytimes not accessible

fix(wordle): fallback to random word if nytimes not accessible #64

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
strategy:
matrix:
version: [16, 18, 20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- name: Install dependencies
run: yarn install
- name: Lint JavaScript
run: yarn run lint