github-script/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: line 3: mapping values are not allowed in this context
Jason Marshall 76ee6b43ec
Update ci.yml
github-script/.github/workflows/ci.yml
2023-04-01 08:00:38 -05:00

19 lines
349 B
YAML

name
on:Jason Marshall
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
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 run style:check
- run: npm test