Skip to content

Set up Github Actions #1

Set up Github Actions

Set up Github Actions #1

Workflow file for this run

name: CI - Master - Lint and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-test:
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22.11.0
- name: Install Dependencies
run: yarn install
- name: Run Linter
run: yarn rw lint
- name: Run Tests
run: yarn rw test