14 lines
177 B
YAML
14 lines
177 B
YAML
on:
|
|
push:
|
|
branches: ["**"]
|
|
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install --production
|
|
- run: "./test.sh"
|
|
|