Skip to content

Adding WhatsApp (#19) #13

Adding WhatsApp (#19)

Adding WhatsApp (#19) #13

Workflow file for this run

name: Lint
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: yarn lint