Skip to content

Commit

Permalink
GHA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-polk committed Jun 28, 2024
1 parent 9c821bb commit fcba126
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/.github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build-Test-Release

on:
push:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
# Keep in sync with volta -> node version in package.json
node-version: 16

- name: Install dependencies
run: yarn

- name: Build package
run: yarn build

- name: Run tests
run: yarn test


# - name: Publish to npm
# run: npm run publish-clean
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 comments on commit fcba126

Please sign in to comment.