Skip to content
This repository has been archived by the owner on Oct 7, 2023. It is now read-only.

Update dependency eslint to v8 #596

Update dependency eslint to v8

Update dependency eslint to v8 #596

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
uses: actions/cache@v3
env:
cache-name: cache-node_modules
with:
path: node_modules
key: gas-cc-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
gas-cc-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
gas-cc-build-${{ env.cache-name }}-
gas-cc-build-
- run: yarn install
- run: yarn run lint
env:
CI: true
- name: Slack Notification
uses: homoluctus/slatify@v1.6
if: failure()
with:
job_name: '*${{ github.workflow }}*'
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}