Skip to content

Commit

Permalink
chore: move CI to GH actions (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
rax-it authored Apr 5, 2024
1 parent 20653f6 commit c6aedfa
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 49 deletions.
49 changes: 0 additions & 49 deletions .circleci/config.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Lint and unit tests

on:
push:
branches:
- master
- 'spring*'
- 'summer*'
- 'winter*'
pull_request:
branches:
- master
- 'spring*'
- 'summer*'
- 'winter*'

jobs:
lint-unit-tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.11.0'
cache: 'yarn'

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Check License Headers
run: yarn check-license-headers

- name: Check formatting
run: yarn format:check

- name: Run linter
run: yarn lint

- name: Run unit tests
run: yarn test


0 comments on commit c6aedfa

Please sign in to comment.