Skip to content

ONEUP-7762: Migrate from CircleCI to GitHub Actions #1

ONEUP-7762: Migrate from CircleCI to GitHub Actions

ONEUP-7762: Migrate from CircleCI to GitHub Actions #1

Workflow file for this run

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