new frontmatter compilation v1 #123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
types: [edited, synchronize, opened] | |
push: | |
branches: [master] | |
jobs: | |
lint-and-check-formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Use node version" | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: 'npm' | |
- name: "Install dependencies" | |
run: npm install | |
- name: "Linting with ESLint" | |
run: npm run lint | |
- name: Check formatting with Prettier | |
run: npm run check-formatting | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Use node version" | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: 'npm' | |
- name: "Install dependencies" | |
run: npm install | |
- name: "Build" | |
run: npm run build | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Use node version" | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: 'npm' | |
- name: "Install dependencies" | |
run: npm install | |
- name: Run tests | |
run: npm run test | |
run-typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Use node version" | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: 'npm' | |
- name: "Install dependencies" | |
run: npm install | |
- name: Typechecking | |
run: npm run typecheck |