Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ jobs:
uses: actions/setup-node@v6
with:
node-version: "24"
cache: yarn

- name: Install Corepack
run: npm install -g corepack

- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn --immutable

- name: Run lint
run: yarn lint
Expand All @@ -42,10 +44,12 @@ jobs:
uses: actions/setup-node@v6
with:
node-version: "24"
cache: yarn

- name: Install Corepack
run: npm install -g corepack

- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn --immutable

- name: Run tests
run: yarn test
Expand All @@ -62,10 +66,12 @@ jobs:
uses: actions/setup-node@v6
with:
node-version: "24"
cache: yarn

- name: Install Corepack
run: npm install -g corepack

- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn --immutable

- name: Run build
run: yarn build
33 changes: 32 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# OS
.DS_Store
/node_modules

# Cache
.cache
.tmp
.eslintcache

# Yarn
.pnp.*
**/.yarn/*
!**/.yarn/cache
!**/.yarn/patches
!**/.yarn/plugins
!**/.yarn/releases
!**/.yarn/sdks
!**/.yarn/versions

# Project-generated directories and files
coverage
dist
node_modules
playwright-report
test-results
package.tgz

# Logs
logs
npm-debug.log
yarn-error.log

# Built files
/index.js

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Contributing to css-to-react-native

## Prerequisites

- [Node.js](https://nodejs.org) 20.0 or later
- [Corepack](https://github.com/nodejs/corepack)
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@
"eslint --fix",
"git add"
]
}
},
"packageManager": "yarn@4.13.0"
}
Loading