Skip to content

Bump braces from 3.0.2 to 3.0.3 (#21) #52

Bump braces from 3.0.2 to 3.0.3 (#21)

Bump braces from 3.0.2 to 3.0.3 (#21) #52

Workflow file for this run

name: Lint and Test
on:
- push
jobs:
lint:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v12
uses: actions/setup-node@v1
with:
node-version: 12
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: npm install
run: npm install
- name: eslint
uses: icrawl/action-eslint@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
job-name: eslint
- name: test
run: npm test
env:
TZ: Asia/Tokyo