feat(flinksql): collect comment, type attribute for entity #607
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 | |
# Triggers the workflow on push or pull request events but only for the master branch | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: cache yarn.lock | |
uses: actions/cache@v2 | |
with: | |
path: package-temp-dir | |
key: lock-${{ github.sha }} | |
- name: create yarn.lock | |
run: yarn generate-lock-entry | |
- name: hack for single file | |
run: | | |
if [ ! -d "package-temp-dir" ]; then | |
mkdir package-temp-dir | |
fi | |
cp yarn.lock package-temp-dir | |
- name: cache node_modules | |
id: node_modules_cache_id | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} | |
- name: install | |
if: steps.node_modules_cache_id.outputs.cache-hit != 'true' | |
run: yarn | |
prettier: | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Restore cache from yarn.lock | |
uses: actions/cache@v2 | |
with: | |
path: package-temp-dir | |
key: lock-${{ github.sha }} | |
- name: Restore cache from node_modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} | |
- name: Run prettier lint | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=4096" | |
yarn lint | |
check-types: | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Restore cache from yarn.lock | |
uses: actions/cache@v2 | |
with: | |
path: package-temp-dir | |
key: lock-${{ github.sha }} | |
- name: Restore cache from node_modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} | |
- name: Run tsc check | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=4096" | |
yarn check-types | |
test: | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Restore cache from yarn.lock | |
uses: actions/cache@v2 | |
with: | |
path: package-temp-dir | |
key: lock-${{ github.sha }} | |
- name: Restore cache from node_modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} | |
- name: Run Units Test | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=4096" | |
yarn test | |
build: | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Restore cache from yarn.lock | |
uses: actions/cache@v2 | |
with: | |
path: package-temp-dir | |
key: lock-${{ github.sha }} | |
- name: Restore cache from node_modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} | |
- name: Run Build | |
run: yarn build |