mirror of
https://github.com/actions/create-release.git
synced 2025-06-14 21:07:43 +00:00
16 lines
346 B
YAML
16 lines
346 B
YAML
name: "Tests"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all
|
|
- main # triggers on pushes that contain changes in main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: npm ci
|
|
- run: npm test
|