Skip to content

Instantly share code, notes, and snippets.

View theseyi's full-sized avatar
💭
making the world's data actionable

Seyi Adebajo theseyi

💭
making the world's data actionable
  • Metaphor Data
View GitHub Profile
@theseyi
theseyi / components.test-task.js
Created March 31, 2019 09:43 — forked from sukima/components.test-task.js
concurrency onerror
import Ember from 'ember';
import { task, timeout } from 'ember-concurrency';
export default Ember.Component.extend({
isRunning: Ember.computed.reads('theTask.isRunning'),
error: Ember.computed.reads('theTask.last.error'),
theTask: task(function* () {
console.count('task performed');
//yield timeout(1000);
@theseyi
theseyi / dev.yml
Created January 24, 2021 00:39 — forked from maxkostinevich/dev.yml
Github Actions - Deploy Serverless Framework (AWS)
#
# Github Actions for Serverless Framework
#
# Create AWS_KEY and AWS_SECRET secrets in Github repository settings
# If you're using env.yml file, store its content as ENV Github secret
#
# Master branch will be deployed as DEV and every new tag starting with "v**" (e.g. v1.0, v1.2, v2.0, etc) will be deployed as PROD
#
# Learn more: https://maxkostinevich.com/blog/how-to-deploy-serverless-applications-using-github-actions/
#