Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Bump ip from 1.1.5 to 1.1.9 in /MyFlickList.App #224

Bump ip from 1.1.5 to 1.1.9 in /MyFlickList.App

Bump ip from 1.1.5 to 1.1.9 in /MyFlickList.App #224

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-api:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install .NET
uses: actions/[email protected]
with:
dotnet-version: 5.0.x
- name: Build & test
run: dotnet test --configuration Release --logger GitHubActions
- name: Upload coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
build-app:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install NodeJS
uses: actions/[email protected]
with:
node-version: 12
- name: Pull dependencies
run: npm ci --no-audit
working-directory: ./MyFlickList.App
- name: Build
run: npm run build
working-directory: ./MyFlickList.App