Skip to content

Commit

Permalink
chore: migrate to github-actions from travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyrohrbough committed Apr 3, 2023
1 parent 5ee7424 commit 88cfb43
Show file tree
Hide file tree
Showing 2 changed files with 19,309 additions and 55 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/run.yml
@@ -0,0 +1,23 @@
name: Test and Release (on master)
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci --frozen-lockfile
- run: npm test
release:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Release @cypress/commit-info
run: npm run semantic-release -- --dry-run

0 comments on commit 88cfb43

Please sign in to comment.