Skip to content

feature: fix replies (#30) #40

feature: fix replies (#30)

feature: fix replies (#30) #40

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.10.0'
cache: 'yarn'
- name: Install packages
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn
- name: Run linter
run: yarn lint
build:
name: Build application
needs: lint
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.10.0'
cache: 'yarn'
- name: Install packages
run: yarn
- name: Build application
run: yarn build