piskel/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: line 12: mapping values are not allowed in this context
2022-06-10 15:57:35 -04:00

18 lines
269 B
YAML

name: ci
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v3
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- run: npm ci
- run: npm test