Merge pull request #1 from im-abdulmannan/spoonacular-api #8
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: SimplePipeline | |
on: | |
push: | |
branches: [master] | |
jobs: | |
lintTest: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: | |
uses: actions/checkout@v2 | |
- name: Installing Dependencies | |
run: | | |
echo "Installing dependencies..." | |
npm install | |
- name: Run Linting | |
run: | | |
echo "Running lint..." | |
npm run lint | |
env: | |
CI: true |