Bump bootstrap from 4.6.1 to 5.0.0 #403
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
name: Check | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Typecheck | |
run: yarn tsc | |
- name: Lint scripts | |
run: yarn eslint | |
- name: Lint styles | |
run: yarn stylelint | |
- name: Prettier | |
run: yarn prettier | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Collect test coverage | |
run: yarn coverage --ci | |
- name: Upload coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./coverage/lcov.info | |
- name: Check strings | |
run: make -C src/strings test |