Refactor GitHub Actions workflows and update Node.js API #1
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: Check packages | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| workflow_dispatch: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| rust: | |
| name: Check Rust distribution | |
| uses: ./.github/workflows/check-rust.yml | |
| python: | |
| name: Check Python distributions | |
| uses: ./.github/workflows/check-python.yml | |
| node: | |
| name: Check Node distributions | |
| uses: ./.github/workflows/check-node.yml |