mirror of
https://gitlab.com/upRootNutrition/zookeeper.git
synced 2025-06-16 10:25:12 -05:00
feat: init
This commit is contained in:
parent
8379d09058
commit
2cfa016090
2929 changed files with 299087 additions and 3 deletions
39
node_modules/magic-bytes.js/.github/workflows/build-and-test.yml
generated
vendored
Normal file
39
node_modules/magic-bytes.js/.github/workflows/build-and-test.yml
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
name: Build and test
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
jobs:
|
||||
buildAndTest:
|
||||
name: Build and test (Node.js v${{ matrix.node-version }})
|
||||
timeout-minutes: 15
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
- name: Install install dependencies
|
||||
run: npm ci
|
||||
- name: test
|
||||
run: npm test
|
||||
- name: build
|
||||
run: npm run build
|
||||
- name: release new version
|
||||
run: npm run semantic-release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
#- run: npm publish
|
||||
# env:
|
||||
# NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET_TOKEN }}
|
Loading…
Add table
Add a link
Reference in a new issue