Skip to content

gh-action: Add action for build images #31

gh-action: Add action for build images

gh-action: Add action for build images #31

Workflow file for this run

name: Lint
on:
workflow_dispatch:
push:
branches: [master, main]
pull_request:
branches: [master, main, develop]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Code Linting
run: npm run lint