Skip to content

chore: remove npm script to print ts version #8

chore: remove npm script to print ts version

chore: remove npm script to print ts version #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
check-and-test:
name: Check and Test
timeout-minutes: 15
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm install
# Check: https://github.com/vercel/next.js/issues/53959
# - name: Check types
# run: npm run check-types
- name: Check linting
run: npm run lint
- name: Run tests
run: npm run test
# automated-testing:
# name: E2E Testing