Skip to content

Commit

Permalink
Merge pull request #254 from mixpanel/add-new-workflow
Browse files Browse the repository at this point in the history
Create initial release-tag.yml
  • Loading branch information
zihejia authored May 20, 2024
2 parents 4f4c153 + e85aaae commit 6d8da0b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Node.js CI

on:
workflow_dispatch:

jobs:
test_main_code:
runs-on: macos-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit 6d8da0b

Please sign in to comment.