renting-deps: bump Npgsql.EntityFrameworkCore.PostgreSQL from 8.0.10 to 9.0.2 in /backend/RentingAPI #82
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: Test Builds | |
on: | |
pull_request: | |
branches: [ "main", "develop" ] | |
workflow_dispatch: | |
env: | |
NODE_VERSION: '20.x' # set this to the node version to use | |
NET_SDK_VERSION: '8.x' | |
permissions: | |
contents: read | |
jobs: | |
build-frontend-ng: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install NPM packages for bookstore | |
run: npm install --no-package-lock | |
working-directory: ${{ github.workspace }}/frontend/bookstore | |
- name: Build frontend bookstore | |
working-directory: ${{ github.workspace }}/frontend/bookstore | |
run: | | |
npm install | |
npm run build --if-present | |
npm run test --if-present | |
build-frontend-react: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install NPM packages for bookstore | |
run: npm install --no-package-lock | |
working-directory: ${{ github.workspace }}/frontend/bookstore-react | |
- name: Build frontend bookstore | |
working-directory: ${{ github.workspace }}/frontend/bookstore-react | |
run: | | |
npm install | |
npm run build --if-present | |
npm run test --if-present | |
build-backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: ${{ env.NET_SDK_VERSION }} | |
- name: Build Backend APIs | |
working-directory: ${{ github.workspace }}/backend | |
run: | | |
dotnet build | |