mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-09 23:03:47 -05:00
28 lines
420 B
YAML
28 lines
420 B
YAML
|
name: test
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
-
|
||
|
# https://github.com/actions/checkout
|
||
|
name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
-
|
||
|
name: Install
|
||
|
run: npm ci
|
||
|
-
|
||
|
name: Build
|
||
|
run: npm run build
|
||
|
-
|
||
|
name: Test
|
||
|
run: npm run test
|