mirror of
https://github.com/actions/github-script.git
synced 2025-12-08 08:06:23 +00:00
17 lines
273 B
YAML
17 lines
273 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/install-dependencies
|
|
- run: npm run style:check
|
|
- run: npm test
|