Skip to content

wip: add tmp redirect for PR testing #248

wip: add tmp redirect for PR testing

wip: add tmp redirect for PR testing #248

Workflow file for this run

name: Lint and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test:ci