This repository has been archived by the owner on May 31, 2024. It is now read-only.
Bump the npm_and_yarn group across 1 directory with 29 updates #220
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, 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 |