renovate[bot]
27135d67a6
chore(deps): update github actions ( #50648 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-10 14:05:31 +05:30
renovate[bot]
7ecd1129e0
chore(deps): update github/codeql-action digest to 83f0fe6
2023-06-03 04:15:15 +00:00
renovate[bot]
bfbbc350db
chore(deps): update github actions
2023-05-27 04:42:12 +00:00
Naomi Carrigan
389e83796d
fix(tools): deduplicate workflows ( #50520 )
2023-05-26 15:07:38 +05:30
renovate[bot]
d63db59a93
chore(deps): update github/codeql-action digest to 29b1f65
2023-05-06 04:04:55 +00:00
Naomi Carrigan
b45aadca54
chore: codesee ignores gitignore ( #50264 )
2023-05-03 16:38:11 +00:00
renovate[bot]
809e00bcfe
chore(deps): update github/codeql-action digest to f3feb00
2023-04-29 06:12:36 +00:00
renovate[bot]
6c49a698a3
chore(deps): update github/codeql-action digest to b2c19fb
2023-04-22 12:35:00 +00:00
renovate[bot]
cf53cf2e22
chore(deps): update github actions ( #50062 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-15 05:59:07 +05:30
Mrugesh Mohapatra
4100d6a5be
chore: update task title
2023-04-11 10:58:38 +05:30
Mrugesh Mohapatra
ad842f7f0c
fix(actions,e2e): update spec formats ( #49984 )
2023-04-11 03:49:42 +05:30
renovate[bot]
e1dd1a5726
chore(deps): update github actions
2023-04-08 07:15:40 +00:00
Mrugesh Mohapatra
162336365b
fix(e2e): update workflows and cypress configs ( #49947 )
...
* chore: bump cypress to v11
* fix: remove firefox downgrade
* fix: remove passing specs in the run-script
2023-04-05 08:33:22 -07:00
Mrugesh Mohapatra
db4e58fa7a
fix(e2e): disable running on firefox temporarily ( #49954 )
2023-04-05 13:29:15 +05:30
renovate[bot]
506257ad12
chore(deps): update github/codeql-action digest to 04df126
2023-04-01 16:08:11 +00:00
Mrugesh Mohapatra
e5590e56d7
chore: use pnpm v8 for deps ( #49892 )
...
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com >
2023-03-29 20:18:49 +05:30
renovate[bot]
f0106207ee
chore(deps): update github actions ( #49842 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-25 11:13:59 +05:30
Naomi Carrigan
1d616c733b
feat(.github): comment on i18n failure ( #49746 )
...
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com >
2023-03-24 07:14:06 +00:00
Oliver Eyton-Williams
a0f958189e
chore: update api test suite and include it in run test ( #49794 )
2023-03-23 16:57:11 +00:00
Mrugesh Mohapatra
496235c4ad
chore: drop the knip workflow ( #49768 )
2023-03-20 17:06:10 +05:30
renovate[bot]
e0be65b2d3
chore(deps): update github actions
2023-03-18 07:37:14 +00:00
Oliver Eyton-Williams
c498c06259
fix(deps): add missing dependencies + fix knip ( #49691 )
...
* refactor: use pnpm dlx over npx
* fix: create config before running knip
* chore: fix challenge-parser dependencies
* chore: add missing client + plugin dependencies
* chore: pin deps
2023-03-13 19:38:19 +05:30
renovate[bot]
a88b97c5b3
chore(deps): update github actions ( #49669 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-11 07:24:56 +02:00
Oliver Eyton-Williams
c5984e78e5
fix: only cache pnpm store once ( #49662 )
2023-03-11 01:10:18 +05:30
Oliver Eyton-Williams
14286f6f8b
chore(.github): cache pnpm store ( #49637 )
...
💸
2023-03-10 12:08:40 +00:00
pmelin
90d35945c1
chore(cypress): TS Migration: projects.ts, show-cert-from-superblock.ts and challenges.ts ( #49635 )
2023-03-10 07:41:25 +00:00
Oliver Eyton-Williams
d7848ae01a
feat: migrate to pnpm for better workspace DX ( #49293 )
...
* feat: npm -> pnpm
This resolves the issues with the gatsby client (gatsby-plugin-pnpm
deals with the fact that gatsby is relying on its own dependencies
being de-duped)
and challenge-editor (which doesn't seem to want to automatically install
codemirror and needed its own eslint config)
* fix: correct mocha path for curriculum tests
* fix: use select workspace with -F not -w
* fix: reorganise packages and restrict hoisting
pnpm works best if the workspaces keep their own dependencies, since
dependencies are not flattened and then what node resolves from a
require is predictable.
@types seem to be a special case and more care is required to prevent
them getting smushed together in the root (hence the .npmrc)
* fix: add types for tools + root
* fix: decouple challenge-auditor from client
* fix: add ui-components types
* fix(client): use the latest types for react 16
* fix: prettify
* fix: prettierignore pnpm-lock
* fix: relax hoisting
Turns out pnpm works just fine with types. I don't know what was going
wrong before, but there are no-longer any type conflicts.
* fix: add @redux-saga/core to fix eslint issue
It seems to only be redux-saga that import/named can't cope with, so it
is probably okay to work around this one.
* chore: add chai to tools/scripts/build
* fix: add store to root for cypress
* fix: allow cypress to download binaries
If we want to keep preventing cypress from downloading binaries, we can
figure out a workaround, but I'm allowing it to ease the transition to
pnpm.
My guess about why this is happening is that npm triggers Cypress's
postinstall script, but pnpm does not (because pnpm install only
installs if necessary, perferring to link)
* chore: re-enable pre/post scripts
* fix: update build scripts for client
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com >
* chore: update engines to use pnpm
* fix: enable choice of (super)block for tests
Only 'nix machines for now.
* chore: pin pnpm to version 7
* chore: remove last npms
Except web + curriculum-server. I'll update them when I start work on
them again.
* fix: lockfile check to catch any package-locks
* fix(action): install pnpm for upcoming tests
* chore: add nodemon to new api
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com >
2023-03-02 18:17:44 +00:00
renovate[bot]
a0f0294645
chore(deps): update codesee-io/codesee-action digest to ab0fd09
2023-02-26 18:47:13 +00:00
renovate[bot]
c8606ec6f9
chore(deps): update github/codeql-action digest to 32dc499 ( #49502 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-25 11:03:41 +05:30
renovate[bot]
d941153be8
chore(deps): update actions/github-script digest to 98814c5 ( #49420 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-18 08:17:11 -08:00
Mrugesh Mohapatra
51217a62db
fix: update github actions trigger configs ( #49328 )
2023-02-13 16:56:48 +05:30
renovate[bot]
d7787eb0cc
chore(deps): update github/codeql-action digest to 17573ee ( #49338 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-11 07:30:19 +00:00
Ahmad Abdolsaheb
21eb7c5e21
fix: allow cypress 3rd party TS config files ( #49218 )
2023-02-01 19:43:51 +05:30
renovate[bot]
870c415177
chore(deps): update github/codeql-action digest to 3ebbd71
2023-01-28 05:03:50 +00:00
Muhammed Mustafa
a1c38b0ff5
feat(workflow): create update license yearly action ( #49115 )
2023-01-23 15:37:44 +01:00
renovate[bot]
2d35341dbb
chore(deps): update github/codeql-action digest to a34ca99
2023-01-21 04:23:17 +00:00
renovate[bot]
becedc8c54
chore(deps): update github/codeql-action digest to 515828d ( #49024 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-14 12:52:00 +05:30
renovate[bot]
dca62c0430
chore(deps): update github actions ( #48951 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-07 02:14:22 +00:00
Mrugesh Mohapatra
1d6e10c38c
fix(ci): add node 18 build, test variants ( #48117 )
2022-12-19 20:29:50 +05:30
renovate[bot]
3d232a9d11
chore(deps): update github actions
2022-12-17 08:02:56 +00:00
Oliver Eyton-Williams
c8be10ca77
chore: make too many lockfiles error more explicit ( #48748 )
2022-12-13 21:43:53 +04:00
Sem Bauke
12fd5c4d32
feat: enable TypeScript for Cypress ( #48701 )
...
* feat: enable TypeScript for Cypress
* fix: run both js and ts in workflow
2022-12-10 17:12:42 +02:00
renovate[bot]
4ef8ada35c
chore(deps): update github/codeql-action digest to a669cc5
2022-12-10 09:42:15 +00:00
Daniel C. Silverstein
0871341c9c
chore(tools/scripts): Upgrade CodeSee workflow to version 2 ( #48694 )
...
Update the CodeSee workflow file to latest version.
2022-12-09 09:25:21 +05:30
renovate[bot]
d1d8973085
chore(deps): update github actions
2022-12-03 05:17:25 +00:00
Niraj Nandish
d06b65ff85
fix(actions): errors in mobile cypress action ( #48612 )
...
* action: update flutter version in action
* action: update cypress action version to v4
* fix: mobile cypress test file location
2022-12-02 14:21:22 +05:30
renovate[bot]
141c18c35b
chore(deps): update github/codeql-action digest to 312e093
2022-11-26 03:57:23 +00:00
renovate[bot]
10c2ac8df3
chore(deps): update github/codeql-action digest to 678fc3a
2022-11-19 04:37:35 +00:00
renovate[bot]
719e360ec2
chore(deps): update github actions
2022-11-14 12:58:02 +05:30
Shaun Hamilton
caf5dd72f9
chore(.github): disable tests on next-api, add label ( #48435 )
2022-11-09 00:27:50 +05:30