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