Skip to content

WikiTeq/npm-test-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NPM test action

The action is a composite action that will run npm ci to install dependencies, and then npm test to run tests.

It makes use of:

Usage

- uses: wikiteq/npm-test-action@main

Example

The below is an example of how to setup your GitHub Actions workflow on a repository:

.github/workflows/main.yml

name: Example

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ "*" ]

jobs:
  npm-tests:
    name: NPM tests
    runs-on: ubuntu-latest
    steps:
      - uses: wikiteq/npm-test-action@main

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published