awesome-cordova-plugins/.github/workflows/nodejs.yml
renovate[bot] bccfde9fc0
chore(deps): update actions/checkout action to v3 (#4064)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-03 15:26:28 +01:00

34 lines
594 B
YAML

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint -- --quiet
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Readmes
run: npm run readmes