[Snyk] Upgrade winston from 3.13.0 to 3.13.1 #330
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: Default Node CI | |
on: | |
push: | |
branches: main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Out Commits Securely . . . | |
uses: actions/checkout@v2 | |
- name: Setup Node 20 Environment . . . | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: https://npm.pkg.github.com/ | |
scope: "@wh-iterabb-it" | |
- name: Installing Dependencies... | |
working-directory: . | |
run: npm ci | |
env: | |
GITHUB_TOKEN: ${{secrets.NODE_AUTH_TOKEN}} | |
- name: Running npm run test... | |
working-directory: . | |
run: npm run test |