Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Merge remote-tracking branch 'origin/master' #26

Merge remote-tracking branch 'origin/master'

Merge remote-tracking branch 'origin/master' #26

Workflow file for this run

name: Checks
on:
push:
branches: [master]
pull_request:
env:
NODE_ENV: development
TWITTER_SCREEN_NAME: RemindMe_OfThis
EXTERNAL_URL: remindmeofthis.app
jobs:
test:
runs-on: ubuntu-latest
name: Tests (Node.js 14.18.0)
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.18.0
uses: actions/setup-node@v2
with:
node-version: 14.18.0
- run: npm i
- name: Tests
run: npm run test
lint:
runs-on: ubuntu-latest
name: Lint (Node.js 14.18.0)
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.18.0
uses: actions/setup-node@v2
with:
node-version: 14.18.0
- run: npm i
- name: Lint
run: npm run lint