Skip to content

Bump cross-spawn in /client #253

Bump cross-spawn in /client

Bump cross-spawn in /client #253

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Lint
# Controls when the action will run. Triggers the workflow on push or pull request
# events
on: [push]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Install dependencies
working-directory: client
run: npm ci
# Runs a single command using the runners shell
- name: Lint styles
working-directory: client
run: npm run lint:style
- name: Lint scripts
working-directory: client
run: npm run lint:script