Skip to content

Commit

Permalink
chore: reimplement build workflow to use yarn (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxcabe authored Nov 29, 2023
1 parent 3e396d6 commit b10bc01
Show file tree
Hide file tree
Showing 5 changed files with 344 additions and 344 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Upgrade npm
run: npm install -g npm
- name: Install npm packages
run: npm ci
node-version: 20.9.x
- name: Install packages
run: yarn install
- name: Run tests
run: npm run test
run: yarn test
- name: Generate production build
run: npm run dist
run: yarn build
670 changes: 335 additions & 335 deletions .yarn/releases/yarn-4.0.1.cjs → .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
yarnPath: .yarn/releases/yarn-4.0.1.cjs
yarnPath: .yarn/releases/yarn-4.0.2.cjs
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,6 @@
"build/module/test/Integration/*.spec.js",
"build/module/test/VLIW/*.spec.js"
]
}
},
"packageManager": "[email protected]"
}
1 change: 1 addition & 0 deletions src/vite-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />

0 comments on commit b10bc01

Please sign in to comment.