Merge pull request #60 from dedevpradev/docs/add-contributing-md #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.17.0' | |
- name: Install frontend dependencies | |
working-directory: ./frontend | |
run: npm install | |
- name: Build frontend | |
working-directory: ./frontend | |
run: npm run build | |
#- name: Test frontend | |
# working-directory: ./frontend | |
# run: npm test -- --watchAll=false | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Install backend dependencies | |
working-directory: ./backend | |
run: go mod download | |
- name: Build backend | |
working-directory: ./backend | |
run: go build -v ./... | |
- name: Test backend | |
working-directory: ./backend | |
run: go test -v ./... |