This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
[Snyk] Upgrade cosmiconfig from 8.1.3 to 8.3.4 #118
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
name: Test | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v1 | |
- name: Setup node version | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "12" | |
- name: Install dependencies | |
run: yarn install | |
- name: Build typescript | |
run: yarn build | |
- name: Unit tests | |
run: yarn test | |
- name: Integration tests | |
run: yarn test:integration |