nvm/.github/workflows/tests.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: mapping values are not allowed in this context
2021-09-02 15:25:31 +05:30

16 lines
284 B
YAML

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
-uses: actions/checkout@v2
-uses: action/setup-node@v2
with:
nod-version: 14
-name: install deps
run: npm ci
-name: run tests
run: npm test