Merge pull request #144 from securesecrets/changeset-release/main #243
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: Typecheck, Eslint | |
on: [push] | |
jobs: | |
typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Node Version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16.0 | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Type-Check | |
run: yarn typecheck | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Node Version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.9.0 | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Eslint-Check | |
run: yarn lint |