Skip to content

Commit

Permalink
Migrate from travis to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanhogan committed Apr 2, 2023
1 parent 5cc7cbe commit d0bb24c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 20 deletions.
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

version: 2.1

orbs:
node: circleci/[email protected]

jobs:
deploy:
executor:
name: node/default
tag: '16.14.2'
steps:
- checkout
- node/install-packages:
pkg-manager: yarn
- add_ssh_keys:
fingerprints:
- "18:d1:2c:07:57:e1:39:5b:f0:79:17:a2:df:f9:06:53"
- run:
name: Install and configure dependencies
command: |
git config user.email "[email protected]"
git config user.name "ci-build"
- run:
name: Run GH Pages deploy
command: yarn deploy
workflows:
deploy_site:
jobs:
- deploy:
filters:
branches:
only: main
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit d0bb24c

Please sign in to comment.