mirror of
https://github.com/actions/github-script.git
synced 2026-02-08 03:57:27 +00:00
19 lines
349 B
YAML
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
|