diff --git a/.editorconfig b/.editorconfig index 880331a09e..3b38c179c3 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,3 +21,7 @@ insert_final_newline = true indent_style = space indent_size = 4 trim_trailing_whitespace = true + +[*.{yaml, yml}] +indent_size = 2 +indent_style = tab diff --git a/.github/workflows/node-ci.yaml b/.github/workflows/node-ci.yaml new file mode 100644 index 0000000000..29e503d8b4 --- /dev/null +++ b/.github/workflows/node-ci.yaml @@ -0,0 +1,16 @@ +name: Node.js CI +on: + push +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '16' + cache: 'yarn' + - run: ./scripts/fetch-develop.deps.sh --depth 1 + - run: yarn install + - run: yarn build:genfiles + - run: yarn test