Skip to content

Merge pull request #13 from nrkno/chore/update-information-files #108

Merge pull request #13 from nrkno/chore/update-information-files

Merge pull request #13 from nrkno/chore/update-information-files #108

Workflow file for this run

name: Node CI
on:
push:
branches:
- '**'
tags:
- 'v**'
pull_request:
jobs:
lint:
name: Typecheck and Lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16.x
- name: restore node_modules
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Prepare Environment
run: |
yarn install
- name: Run typecheck
run: |
yarn build
- name: Run linter
run: |
yarn lint