Skip to content

Commit

Permalink
Merge b265d34 into 62ea142
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcasalboni committed Feb 15, 2023
2 parents 62ea142 + b265d34 commit f91f8a2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
@@ -0,0 +1,21 @@
name: aws-lambda-power-tuning-tests
run-name: ${{ github.actor }} is running integration tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f91f8a2

Please sign in to comment.