Skip to content

feat: move templating and config file format to javascript #7

feat: move templating and config file format to javascript

feat: move templating and config file format to javascript #7

Workflow file for this run

# HEADS UP
# This file has been auto generated. Please adjust to your liking and needs
name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test