chore(deps): update dependency turbo to v2.1.0 #4085
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] | |
jobs: | |
test: | |
name: Lint & Test | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
- uses: pnpm/[email protected] | |
id: install_pnpm | |
with: | |
version: 9.4.0 | |
- name: echo npm dest | |
run: echo "pnpm installed in ${{steps.install_pnpm.outputs.dest}}" | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
- name: Cache pnpm modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Creating .npmrc | |
run: | | |
"${GITHUB_WORKSPACE}/scripts/create-npmrc.sh" "${{ secrets.NPM_TOKEN }}" "${{ secrets.GSAP_TOKEN }}" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GSAP_TOKEN: ${{ secrets.GSAP_TOKEN }} | |
- name: Install Dependencies | |
run: pnpm i --no-frozen-lockfile | |
- name: Build | |
run: pnpm build | |
- name: Lint | |
run: pnpm lint | |
- name: Test | |
run: pnpm test |