Skip to content

Commit

Permalink
Updates main to Angular 15
Browse files Browse the repository at this point in the history
Merge pull request #359 from kendraio/develop
  • Loading branch information
lukestanley committed Mar 23, 2023
2 parents 81fef53 + 6792f4d commit 0e244b0
Show file tree
Hide file tree
Showing 59 changed files with 13,864 additions and 27,909 deletions.
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"env": {
"browser": true,
"es2021": true
},
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
}
8 changes: 8 additions & 0 deletions .github/actions/tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
FROM cypress/included:8.4.1

# Install Node 18
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
mv /usr/local/bin/node /usr/local/bin/node_old && \
ln -s /usr/bin/node /usr/local/bin/node && \
npm install -g npm@latest && \
node --version && npm --version

# https://docs.cypress.io/guides/continuous-integration/introduction#Machine-requirements
RUN apt-get update && apt-get install -y curl jq
# Copies your code file from your action repository to the filesystem path `/` of the container
Expand Down

0 comments on commit 0e244b0

Please sign in to comment.