Skip to content

Commit

Permalink
Merge pull request #437 from fishbrain/develop
Browse files Browse the repository at this point in the history
Go Live
  • Loading branch information
lhansford authored Apr 5, 2023
2 parents 4f69889 + 02ab591 commit f985a1c
Show file tree
Hide file tree
Showing 7 changed files with 3,747 additions and 3,489 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ updates:
reviewers:
- "fishbrain/web-developers"
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
reviewers:
- "fishbrain/web-developers"
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches-ignore:
- master

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup node 18
uses: actions/setup-node@v3
with:
node-version: '18'
check-latest: true

- name: Install
run: npm ci

- name: Test
run: npm run test
env:
CI: true
25 changes: 0 additions & 25 deletions .github/workflows/nodejs.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/npmpublish.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish

on:
push:
branches:
- master

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup node 18
uses: actions/setup-node@v3
with:
node-version: '18'
check-latest: true

- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit f985a1c

Please sign in to comment.