mirror of
https://github.com/actions/github-script.git
synced 2025-12-08 16:16:21 +00:00
21 lines
338 B
YAML
21 lines
338 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 12
|
|
cache: npm
|
|
- run: npm ci
|
|
- run: npm run style:check
|
|
- run: npm test
|