################################################################################
#                     DO NOT EDIT THIS FILE (Auto-Generated)                   #
# Contents of this file were generated by the central configuration repository #
# Changes to this file may be overwritten                                      #
################################################################################
name: ~Lib / JS
on:
  workflow_call:
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
    - name: Use Node.js
      uses: actions/setup-node@v2
    - name: Checkout current git repository
      uses: actions/checkout@v2
    - name: Install npm dependencies
      run: npm i
    - name: Run lint
      run: npm run lint
    - name: Run test
      run: npm t
