Skip to content

Bump serverless from 2.72.3 to 3.29.0 #91

Bump serverless from 2.72.3 to 3.29.0

Bump serverless from 2.72.3 to 3.29.0 #91

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run coverage
- run: npm install -g codecov
- run: codecov -t ${{ secrets.CODECOV_TOKEN }}
- name: Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}