diff --git a/.auto-changelog b/.auto-changelog new file mode 100644 index 0000000..a6d756d --- /dev/null +++ b/.auto-changelog @@ -0,0 +1,8 @@ +{ + "output": "HISTORY.md", + "template": "keepachangelog", + "unreleased": true, + "commitLimit": false, + "startingDate": "2025-01-01", + "ignoreCommitPattern": "^(Release)(.*)$" +} diff --git a/.github/workflows/github-action-acceptance.yaml b/.github/workflows/github-action-acceptance.yaml new file mode 100644 index 0000000..629dfc7 --- /dev/null +++ b/.github/workflows/github-action-acceptance.yaml @@ -0,0 +1,28 @@ +name: Node.js CI + +on: + push: + branches: + - '*' + pull_request: + branches: + - '*' + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [22.x] + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - run: yarn + - run: yarn rescript:build + # - run: yarn test diff --git a/.github/workflows/packaging.yaml b/.github/workflows/packaging.yaml deleted file mode 100644 index be4c490..0000000 --- a/.github/workflows/packaging.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: Test build - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - ref: ${{ github.ref }} - - uses: actions/setup-node@v3 - with: - registry-url: https://registry.npmjs.org/ - - uses: bahmutov/npm-install@v1 - - run: yarn build