Skip to content

Refactor views from Jade to Pug and add initial test files #2

Refactor views from Jade to Pug and add initial test files

Refactor views from Jade to Pug and add initial test files #2

Workflow file for this run

# filepath: /.github/workflows/ci.yml
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- run: yarn install
- run: yarn test