Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

syn2mas tool to import users from Synapse #10

syn2mas tool to import users from Synapse

syn2mas tool to import users from Synapse #10

Workflow file for this run

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) }}