Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into kopflos
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Mar 29, 2024
2 parents d46faaf + f0547e9 commit c8968e7
Show file tree
Hide file tree
Showing 16 changed files with 1,671 additions and 1,922 deletions.
Empty file removed .eslintignore
Empty file.
28 changes: 14 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
- run: yarn install --ci
node-version: 20
- run: npm ci
- run: yarn lint

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
- run: yarn install --ci
node-version: 20
- run: npm ci
- run: yarn tsc --noEmit

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
- run: yarn install --ci
- run: yarn test
node-version: 20
- run: npm ci
- run: npx c8 --all --reporter=lcovonly npm test
- name: Codecov
uses: codecov/codecov-action@v1.0.5
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2.1.2
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 18

- name: Install Dependencies
run: yarn
run: npm ci

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@master
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: yarn release
Expand Down
File renamed without changes.
Loading

0 comments on commit c8968e7

Please sign in to comment.