Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 88cfb43

Browse files
chore: migrate to github-actions from travis-ci
1 parent 5ee7424 commit 88cfb43

2 files changed

Lines changed: 19309 additions & 55 deletions

File tree

.github/workflows/run.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test and Release (on master)
2+
on: push
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v3
9+
- uses: actions/setup-node@v3
10+
with:
11+
node-version: 16
12+
- run: npm ci --frozen-lockfile
13+
- run: npm test
14+
release:
15+
runs-on: ubuntu-latest
16+
needs: test
17+
if: github.ref == 'refs/heads/master'
18+
steps:
19+
- uses: actions/setup-node@v3
20+
with:
21+
node-version: 16
22+
- name: Release @cypress/commit-info
23+
run: npm run semantic-release -- --dry-run

0 commit comments

Comments
 (0)