Skip to content

Commit

Permalink
added github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Manasse committed Dec 18, 2023
1 parent 0590e78 commit 4d853f4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build application
run-name: ${{ github.actor }} is building the application 🏗️
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: echo "Instaling dependencies ⏬"
- run: npm ci
- run: echo $PATH
- run: echo "Building application 👷"
- run: npm run build --if-present
- run: echo "Building is complete ✅"
- run: echo "Starting tests 🧪"
- run: npm run test
- run: echo "Tests have passed ✅"

0 comments on commit 4d853f4

Please sign in to comment.