build(deps): bump tslib from 2.6.0 to 2.6.1 #3729
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: "latest" | |
- name: Setup Node.js@lts environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- name: Cache multiple paths | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.npm | |
~/cache | |
!~/cache/exclude | |
**/node_modules | |
key: npm-${{ runner.os }}-${{ hashFiles('package.json') }} | |
- run: pnpm i --fix-lockfile | |
- run: pnpm run lint | |
- run: pnpm run build | |
- run: pnpm run test:e2e |