Skip to content

Update version to 2.13.1 (#378) #1270

Update version to 2.13.1 (#378)

Update version to 2.13.1 (#378) #1270

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
branches: [ dev, master ]
pull_request:
branches: [ dev, master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
eslint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "16.x"
- name: NPM install
run: npm install
- name: ESLINT
run: npm run lint