This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
chore(deps-dev): bump @types/node from 18.18.8 to 18.18.9 #1224
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: Compile and lint | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
lintCompile: | |
name: Compile and lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v2 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- name: Install dependencies and compile | |
run: yarn | |
- name: Lint | |
run: yarn lint:ci |