You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
587 B
26 lines
587 B
4 years ago
|
name: Validate
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
validate:
|
||
|
name: Validate
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2.3.3
|
||
|
- uses: actions/setup-node@v2.1.2
|
||
|
with:
|
||
|
node-version: '14'
|
||
|
- name: Restore npm cache
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: ~/.npm
|
||
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-node-
|
||
|
- name: Install dependencies
|
||
|
run: npm install
|
||
|
- name: Validate
|
||
|
run: npm run validate
|