Update dependency @types/lodash to v4.17.13 #202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: CI Pipeline | |
# trigger build when pushing, or when creating a pull request | |
on: [push, pull_request] | |
jobs: | |
build: | |
# run build on latest ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
# this will check out the current branch (https://github.com/actions/checkout#Push-a-commit-using-the-built-in-token) | |
- uses: actions/checkout@v2 | |
# installing Node | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v1 | |
with: | |
# this will use the latest Node 12 version | |
node-version: 12.x | |
# install dependencies using clean install to avoid package lock updates | |
- run: npm ci | |
# build the project if necessary | |
#- run: npm run build --if-present | |
- run: tsc -p ./ | |
# finally run the tests | |
#- run: npm run coverage | |
# Save coverage report in Coveralls | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |