Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #32

Merged
merged 23 commits into from
Jun 22, 2024
Merged

Dev #32

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6bc02aa
fix(deps): update dependency fastify to v4.28.0
renovate[bot] Jun 14, 2024
b817c44
chore(deps): update dependency turbo to v2.0.4
renovate[bot] Jun 14, 2024
733e848
chore(deps): update dependency tsx to v4.15.5
renovate[bot] Jun 15, 2024
5cc776e
chore(deps): update dependency ts-jest to v29.1.5
renovate[bot] Jun 16, 2024
9fd41aa
chore(deps): update dependency tsx to v4.15.6
renovate[bot] Jun 17, 2024
85636ab
chore(deps): update dependency @types/node to v20.14.3
renovate[bot] Jun 17, 2024
3335b03
chore(deps): update typescript-eslint monorepo to v7.13.1
renovate[bot] Jun 17, 2024
a976e6f
chore(deps): update dependency @types/node to v20.14.4
renovate[bot] Jun 18, 2024
0921be5
chore(deps): update dependency @types/node to v20.14.5
renovate[bot] Jun 18, 2024
81945b1
chore(deps): update dependency @types/node to v20.14.6
renovate[bot] Jun 19, 2024
9754764
chore(deps): update dependency node to v20.15.0
renovate[bot] Jun 20, 2024
45ca891
chore(deps): update dependency typescript to v5.5.2
renovate[bot] Jun 20, 2024
95782e5
chore(deps): update dependency @types/node to v20.14.7
renovate[bot] Jun 20, 2024
63bcd66
chore(deps): update dependency tsx to v4.15.7
renovate[bot] Jun 21, 2024
9865496
chore(deps): update dependency @types/node to v20.14.8
renovate[bot] Jun 22, 2024
7c34b60
feat: ci windows
rharkor Jun 22, 2024
f5cd10f
feat: use runner temp
rharkor Jun 22, 2024
d466e5d
fix: post.js
rharkor Jun 22, 2024
b07ebb0
refactor: add log
rharkor Jun 22, 2024
077592e
refactor: log
rharkor Jun 22, 2024
805d66e
fix: post.js & runner temp
rharkor Jun 22, 2024
8c56dd6
fix: output file
rharkor Jun 22, 2024
dc95054
fix: ci
rharkor Jun 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,29 +44,3 @@ jobs:
- name: Build dist/ Directory
id: build
run: npm run bundle

# This will fail the workflow if the `dist/` directory is different than
# expected.
- name: Compare Directories
id: diff
run: |
if [ ! -d dist/ ]; then
echo "Expected dist/ directory does not exist. See status below:"
ls -la ./
exit 1
fi
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/
exit 1
fi

# If `dist/` was different than expected, upload the expected version as a
# workflow artifact.
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,29 @@ jobs:

- name: Test build cache
run: npm run test

test-action-windows:
name: GitHub Actions Test (Windows)
runs-on: windows-latest

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

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm

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

- name: Test Local Action
uses: ./

- name: Test build cache
run: npm run test
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.14.0
20.15.0
9 changes: 7 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

Loading