chore(deps): update dependency tailwindcss to v3.4.16 (#388) #1384
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: Test | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup NodeJs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.10.x' | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run Type Check | |
run: yarn typecheck | |
- name: Run test | |
run: yarn test |