Skip to content

Commit

Permalink
ONEUP-7762: Migrate from CircleCI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aramin committed Jan 2, 2024
1 parent ecbb6b5 commit f4b0e6a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 52 deletions.
52 changes: 0 additions & 52 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Sticky Observer

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: 10.x
registry-url: 'https://registry.npmjs.org'

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

- name: Lint
run: yarn lint

- name: Test
run: yarn test

- name: Build
run: yarn build

0 comments on commit f4b0e6a

Please sign in to comment.