Add invite-tracker tag #541
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: Validate | |
on: [push, pull_request] | |
jobs: | |
validate: | |
name: validate | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Node v20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: rm -rf node_modules && yarn install --frozen-lockfile | |
- name: Run ESLint | |
run: yarn lint | |
- name: Run TSC | |
run: yarn build | |
- name: Validate Tags | |
run: yarn validate-tags |