mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
08316f5f4c
* Update README.md * test setup * Update build.yml
14 lines
243 B
YAML
14 lines
243 B
YAML
name: unit-tests
|
|
on: [pull_request, push]
|
|
jobs:
|
|
unit-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Install and Test
|
|
run: |
|
|
npm install
|
|
npm run-script test
|