Skip to content

Merge pull request #6 from Gimnath-Perera/feat/dummy-data-generation #8

Merge pull request #6 from Gimnath-Perera/feat/dummy-data-generation

Merge pull request #6 from Gimnath-Perera/feat/dummy-data-generation #8

Workflow file for this run

name: Main
on:
push:
branches:
- main
jobs:
linter:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x']
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Add SHORT_SHA env property with commit short sha
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
- name: Git sort sha
run: echo ${SHORT_SHA}
- name: Setup node version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Linter
run: npm run lint