docs(roadmap): add authoring, metadata, and identity plans [roadmap:v0.7.9-v0.7.11] #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| # Run the test suite on every pull request and on pushes to main. Push is | |
| # limited to main so PR branches don't run twice (once for push, once for the PR). | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # Cancel superseded runs on the same ref (e.g. a new push to an open PR branch). | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| uses: ./.github/workflows/tests.yml |