Skip to content

2.17.27

2.17.27 #100

Workflow file for this run

name: CI
on:
push:
branches: [ v2.17.0 ]
pull_request:
branches: [ v2.17.0 ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test:coverage
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1