mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 06:27:38 +00:00
24de6af038
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com> Co-authored-by: malbert69 <m_albert@hotmail.com> Co-authored-by: Ion Caza <contact@johncaza.com>
25 lines
568 B
YAML
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
|