Skip to content

server.js listening to the port #3

server.js listening to the port

server.js listening to the port #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
- name: Run tests
run: npm test
- name: Security scan
uses: snyk/actions/node@master
with:
args: test
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}