Skip to content

thjs-63: Move project into typescript #105

thjs-63: Move project into typescript

thjs-63: Move project into typescript #105

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- production
- development
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version-file: .nvmrc
- name: Install Dependencies
run: |
npm install
- name: Code Linting
run: |
npm run lint