Add "Delta Lake for ETL" blog -- publish June 21 #1413
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: Build checks | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Retrieve required node version | |
run: | | |
echo "engine_node_version=$(jq -r '.engines.node' package.json)" >> $GITHUB_ENV | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.engine_node_version }} | |
- run: npm ci --legacy-peer-deps | |
- run: npm run lint --legacy-peer-deps |