mirror of
https://github.com/actions/javascript-action.git
synced 2025-12-11 05:07:02 +00:00
18 lines
306 B
YAML
18 lines
306 B
YAML
name: "Run JavaScript Action"
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'releases/*' # only run in release distribution branches
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: npm ci
|
|
- run: npm test
|
|
- uses: ./
|
|
with:
|
|
milliseconds: 1000
|