Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into twig3
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanLovely committed Nov 6, 2023
2 parents 9f5b00e + eae1722 commit f1b7e45
Show file tree
Hide file tree
Showing 9 changed files with 17,870 additions and 15,257 deletions.
39 changes: 21 additions & 18 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,24 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: install
#uses: docker://basaltinc/docker-node-php-base:latest
run: npm ci && composer install
- name: build
run: npm run build
- name: test
run: npm test
# - name: eslint
# uses: hallee/eslint-action@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: semantic release
# this will stop early if it's not on `master`, for some reason using `if: github.ref == 'master'` doesn't work
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: actions/checkout@master
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: install
#uses: docker://basaltinc/docker-node-php-base:latest
run: npm ci && composer install
- name: build
run: npm run build
- name: test
run: npm test
# - name: eslint
# uses: hallee/eslint-action@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: NPM publish
run: npx auto shipit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8
18
15 changes: 15 additions & 0 deletions auto.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
onlyPublishWithReleaseLabel: false,
prereleaseBranches: [],
baseBranch: 'master',
author: 'KnapsackBot <53622700+KnapsackBot@users.noreply.github.com>',
plugins: [
[
// https://intuit.github.io/auto/docs/generated/npm
'npm',
{},
],
// https://intuit.github.io/auto/docs/generated/released
'released',
],
};
Loading

0 comments on commit f1b7e45

Please sign in to comment.