@ -0,0 +1,25 @@
|
|||||||
|
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
|
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 755 B |
After Width: | Height: | Size: 841 B |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 2.4 KiB |