Skip to content

Commit

Permalink
ci: move from circle-ci to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus-Ende committed Jan 31, 2024
1 parent 0334084 commit 7c3da0f
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .circleci/config.yml

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Restore cache
uses: actions/cache@v4
with:
path: ~/.npm
key: dependency-cache-${{ hashFiles('package-lock.json') }}
restore-keys: |
dependency-cache-
- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Run tests for schematics
run: npm run test:schematics

0 comments on commit 7c3da0f

Please sign in to comment.