forked from reklawnos/worklet-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Convert CircleCI workflows to GitHub Actions workflows #4
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
Merged
nsheaps
merged 20 commits into
main
from
nsheaps/nate/convert-circleci-to-github-actions
May 15, 2025
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
b383502
feat: Convert CircleCI workflows to GitHub Actions workflows
nsheaps b26ef82
Update GitHub Actions workflow and Node.js version
nsheaps 5c2bbc9
chore: Update GitHub Actions workflow to use latest versions of actio…
nsheaps 492920b
Update package.json
nsheaps 0bd3d3c
Discard changes to src/options.json
nsheaps 86ac332
Replace CircleCI configuration with GitHub Actions workflow
nsheaps 6f32976
chore: use corepack
nsheaps ac45b2c
chore: update copyright information and author details in LICENSE and…
nsheaps 74b19e5
chore: no more publish
nsheaps 2b30088
chore: update CI configuration and remove unused jest configuration
nsheaps 7bbb384
Update ci.yml
nsheaps cde983f
Create CODEOWNERS
nsheaps 8a2856c
chore: update .gitignore and .yarnrc.yml for improved caching and plu…
nsheaps 29d02c2
chore: remove unnecessary blank line in .yarnrc.yml
nsheaps 271410a
Merge branch 'nsheaps/nate/convert-circleci-to-github-actions' of htt…
nsheaps 820688f
chore: update CI node version matrix and .nvmrc; adjust package.json …
nsheaps 00aec1d
Update package.json
nsheaps 0b4f1fc
Update ci.yml
nsheaps 2a026e9
Discard changes to src/worklets/InlineWorklet.js
nsheaps a6100ee
fix: correct node version range in package.json
nsheaps File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| * @gathertown/eng-prod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: {} | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| node-version: [18, 20, 22, 24] | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v2 | ||
| - name: Set up Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| - name: Restore cache | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: node_modules | ||
| key: dependency-cache-${{ hashFiles('yarn.lock') }} | ||
| - name: Install dependencies | ||
| run: corepack enable && corepack install && yarn install --immutable | ||
| - name: Run unit tests | ||
| run: yarn run ci:coverage | ||
| # - name: Submit coverage data to codecov | ||
| # run: bash <(curl -s https://codecov.io/bash) | ||
|
|
||
| analysis: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v2 | ||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version-file: .nvmrc | ||
| - name: Restore cache | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: node_modules | ||
| key: dependency-cache-${{ hashFiles('yarn.lock') }} | ||
| - name: Install dependencies | ||
| run: corepack enable && corepack install && yarn install --immutable | ||
| - name: Run linting | ||
| run: yarn run lint | ||
|
|
||
| # publish: | ||
| # runs-on: ubuntu-latest | ||
| # steps: | ||
| # - name: Checkout code | ||
| # uses: actions/checkout@v2 | ||
| # - name: Set up Node.js | ||
| # uses: actions/setup-node@v4 | ||
| # with: | ||
| # node-version-file: .nvmrc | ||
| # - name: Restore cache | ||
| # uses: actions/cache@v4 | ||
| # with: | ||
| # path: node_modules | ||
| # key: dependency-cache-${{ hashFiles('yarn.lock') }} | ||
| # - name: Install dependencies | ||
| # run: corepack enable && corepack install && yarn install --immutable | ||
| # - name: Validate Commit Messages | ||
| # run: yarn run release:validate | ||
| # - name: Publish to NPM | ||
| # run: printf "noop running conventional-github-releaser" | ||
| # | ||
| # validate-publish: | ||
| # needs: [dependency_cache, test, analysis] | ||
| # runs-on: ubuntu-latest | ||
| # steps: | ||
| # - name: Checkout code | ||
| # uses: actions/checkout@v2 | ||
| # - name: Set up Node.js | ||
| # uses: actions/setup-node@v4 | ||
| # with: | ||
| # node-version-file: .nvmrc | ||
| # - name: Restore cache | ||
| # uses: actions/cache@v4 | ||
| # with: | ||
| # path: node_modules | ||
| # key: dependency-cache-${{ hashFiles('yarn.lock') }} | ||
| # - name: Install dependencies | ||
| # run: corepack enable && corepack install && yarn install --immutable | ||
| # - name: Validate Commit Messages | ||
| # run: yarn run release:validate | ||
| # - name: Publish to NPM | ||
| # run: printf "noop running conventional-github-releaser" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,3 +18,4 @@ Thumbs.db | |
| # Yarn | ||
| .pnp.* | ||
| .yarn/install-state.gz | ||
| .yarn/plugins | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 20.19.2 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,21 @@ | ||
| defaultSemverRangePrefix: "~" | ||
| enableConstraintsChecks: true | ||
| enableGlobalCache: true | ||
| enableTelemetry: false | ||
| nmMode: hardlinks-local | ||
| nodeLinker: node-modules | ||
|
|
||
| supportedArchitectures: | ||
| os: | ||
| - current | ||
| - darwin | ||
| - linux | ||
| - win32 | ||
| cpu: | ||
| - current | ||
| - x64 | ||
| - arm64 | ||
|
|
||
| plugins: | ||
| - path: .yarn/plugins/@yarnpkg/plugin-engines.cjs | ||
| spec: "https://raw.githubusercontent.com/devoto13/yarn-plugin-engines/main/bundles/%40yarnpkg/plugin-engines.js" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,4 +1,5 @@ | ||||||
| Additions and modifications to `worker-loader` copyright (c) 2018 Walker Henderson | ||||||
| Additions and modifications to `worlet-loader` copyright (c) 2025 Gather Presence, Inc. | ||||||
|
||||||
| Additions and modifications to `worlet-loader` copyright (c) 2025 Gather Presence, Inc. | |
| Additions and modifications to `worker-loader` copyright (c) 2025 Gather Presence, Inc. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| const config = { | ||
| testEnvironment: "node", | ||
| }; | ||
|
|
||
| module.exports = config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how dare you not use
mise