This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
Missing type #11
Workflow file for this run
This file contains 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 for tools | |
on: | |
push: | |
paths: | |
- 'tools/**' | |
pull_request: | |
paths: | |
- 'tools/**' | |
concurrency: | |
group: tools-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
syn2mas-lint: | |
name: Check syn2mas style | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout the code | |
uses: actions/[email protected] | |
- name: Install Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: ./tools/syn2mas/.nvmrc | |
- name: Install Node dependencies | |
working-directory: ./tools/syn2mas | |
run: npm ci | |
- name: Lint | |
working-directory: ./tools/syn2mas | |
run: npm run lint | |
tests-done: | |
name: Tests done | |
if: ${{ always() }} | |
needs: | |
- syn2mas-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: matrix-org/done-action@v2 | |
with: | |
needs: ${{ toJSON(needs) }} |