Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/vite-4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mileswatson authored Oct 25, 2023
2 parents 8c1dc9c + d9fb899 commit ce267cf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Install and Build 🔧 # use the lockfile for reproducibility, run typechecking, then output to build folder
run: |
yarn install --frozen-lockfile
yarn run check
yarn build
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ To upgrade dependencies, use `yarn upgrade-interactive` to select the packages y

### I don't understand the code, and I'm feeling overwhelmed

You should read / watch / do the following:

, and then "Introduction", "Routing", and "Stores" from Part 3.


The website was created from scratch using:
- [Typescript](https://www.typescriptlang.org/) - language
- [Node.js Wikipedia](https://en.wikipedia.org/wiki/Node.js) - first paragraph
Expand All @@ -80,8 +75,6 @@ The website was created from scratch using:
- [Docs](https://bulma.io/documentation/)
- [SCSS](https://sass-lang.com/documentation/syntax) - superpowered CSS, makes responsiveness and theming a bit easier

Taking a look at each of these things in isolation should

### Why Static?

Firstly, static sites (by definition) don't change with each request, and so are lighter on server + can be fearlessly cached. More importantly, it means we can get free hosting with GitHub Pages.
Expand Down

0 comments on commit ce267cf

Please sign in to comment.