Skip to content

Allow your own backgrounds to be uploaded #171

Allow your own backgrounds to be uploaded

Allow your own backgrounds to be uploaded #171

Workflow file for this run

name: Lint
on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint