Files
fredy/.github/workflows/test.yml
Alexander Roidl 9bb33e723a Workflow to check sourcecode's linting and formatting (#146)
* ci: workflow to check sourcecode

* fix: make workflow to check source fail for incorrect linting/formatting

* ci: change step name for workflow to check sourcecode
2025-07-23 08:58:43 +02:00

23 lines
361 B
YAML

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: '0 12 * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install
- run: yarn test