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

Bump tar from 6.1.11 to 6.2.1 in /MyFlickList.App #225

Bump tar from 6.1.11 to 6.2.1 in /MyFlickList.App

Bump tar from 6.1.11 to 6.2.1 in /MyFlickList.App #225

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