Skip to content

Commit

Permalink
Merge pull request #15 from meleklassoued/14-implement-ci-workflow
Browse files Browse the repository at this point in the history
ci: ✨ Closes ISS-14
  • Loading branch information
meleklassoued authored Mar 20, 2024
2 parents fad35e8 + 60f364b commit 6597452
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test App

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14'

- name: Install dependencies
run: yarn install

- name: Run linting
run: yarn lint

- name: Run tests
run: yarn test

- name: Build Next.js app
run: yarn build

0 comments on commit 6597452

Please sign in to comment.