Skip to content

Commit

Permalink
Added setup for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivanruii committed Jul 29, 2024
1 parent 26988b0 commit 4ab31fa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI Workflow

on: pull_request

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Node.js 18.13.0
uses: actions/setup-node@v2
with:
node-version: '18.13.0'
cache: 'npm'

- name: Install front
run: npm ci

- name: Build
run: npm run build

- name: Run tests
run: npm test

0 comments on commit 4ab31fa

Please sign in to comment.