fix(deploy): Try to fix deploy.yml #2
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: Continuous Integration | |
on: | |
# Triggers the workflow on pull request events for the develop branch | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Sets up Node.js environment | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.2.0' | |
# Install dependencies | |
- name: Install dependencies | |
run: npm install | |
# Run linter | |
- name: Run linter | |
run: npm run lint | |
# Build the app | |
- name: Build | |
run: npm run build |