Skip to content

fix(deploy): Try to fix deploy.yml #2

fix(deploy): Try to fix deploy.yml

fix(deploy): Try to fix deploy.yml #2

Workflow file for this run

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