Skip to content

Commit

Permalink
Merge branch 'main' into wip/102.090124
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecarrilho authored Jan 31, 2024
2 parents f551554 + d61c777 commit 30eb8a5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
workflow_dispatch:
push:
pull_request:
schedule: # Runs "At 01:00 on Monday Tuesday Wednesday Thursday Friday Saturday and Sunday"
- cron: '0 1 * * 0,1,2,3,4,5,6'

permissions: read-all

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'

- name: Run npm run ci
run: npm ci

- name: Run actual test
run: npm test

0 comments on commit 30eb8a5

Please sign in to comment.