Skip to content

Create npm-test.yml

Create npm-test.yml #1

Workflow file for this run

name: Node.js Test
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Run custom test script
run: npm run test-login