Skip to content

Commit

Permalink
Merge pull request #298 from kategengler/kg-add-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kategengler authored Mar 21, 2023
2 parents 48fd5bd + 889b4c6 commit 07b5e00
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 25 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: CI

on:
push:
branches:
- main
- master
pull_request: {}

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
test:
name: "Tests"
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Run Tests
run: yarn test

floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
cache: yarn
- name: Install Dependencies
run: yarn install --no-lockfile
- name: Run Tests
run: yarn test
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

0 comments on commit 07b5e00

Please sign in to comment.