Skip to content

cron: Added comment for completed RFCs #6

cron: Added comment for completed RFCs

cron: Added comment for completed RFCs #6

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test