Skip to content

Add CI

Add CI #2

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- feature/**
push:
branches:
- main
- feature/**
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
concurrency: { { github.head_ref || github.ref } }

Check failure on line 16 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 16, Col: 14): Required property is missing: group .github/workflows/test.yml: Expected mapping end
jobs:
test:
runs-on: ubuntu-latest
container: ghcr.io/scuffletv/build:0c6e1ff3a4f658977ac944d8b1352d455dfd1165
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: pnpm install -r
- name: Test
run: mask test --ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true