Skip to content

Commit

Permalink
Set up Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pantheredeye authored Nov 21, 2024
1 parent 263876d commit 2565e90
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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

0 comments on commit 2565e90

Please sign in to comment.