Files
streetmerchant/.github/workflows/ci.yaml
T
Jef LeCompte 24de6af038 chore: linting (#7)
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>

Co-authored-by: malbert69 <m_albert@hotmail.com>
Co-authored-by: Ion Caza <contact@johncaza.com>
2020-09-17 22:13:51 -04:00

25 lines
568 B
YAML

name: ci
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
name: Lint
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2.1.1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Pull dependencies
run: npm ci