Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

chore(deps-dev): bump eslint-import-resolver-typescript from 3.6.3 to 3.7.0 #868

chore(deps-dev): bump eslint-import-resolver-typescript from 3.6.3 to 3.7.0

chore(deps-dev): bump eslint-import-resolver-typescript from 3.6.3 to 3.7.0 #868

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
serverless-version:
- 3
- 4
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Install serverless ${{ matrix.serverless-version }}
run: npm install serverless@${{ matrix.serverless-version }}
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run cover
env:
SERVERLESS_LICENSE_KEY: ${{ secrets.SERVERLESS_LICENSE_KEY }}
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Publish to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Close parallel build
uses: coverallsapp/github-action@v2
with:
parallel-finished: true