Skip to content

Commit

Permalink
Add a first GitHub Actions job.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Sep 20, 2023
1 parent 107ab03 commit 1b3a583
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: cesium-native
on: [push, pr]
jobs:
QuickChecks:
name: "Quick Checks"
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Check source formatting
run: |
npm install
npm run format -- --dry-run -Werror

0 comments on commit 1b3a583

Please sign in to comment.