Skip to content

Commit

Permalink
4
Browse files Browse the repository at this point in the history
  • Loading branch information
thednp committed Nov 29, 2023
1 parent 62f3b47 commit 086bda7
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,19 @@ jobs:
name: Test on Node 16
steps:
- name: Checkout
uses: actions/checkout@v2

- uses: pnpm/[email protected]
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: pnpm
# - uses: bahmutov/npm-install@v1
- run: pnpm install --no-frozen-lockfile
- run: pnpm build
- run: pnpm compile
- run: pnpm test
- run: npm install
- run: npm run build
- run: npm run compile
- run: npm run test

- name: Upload coverage report on Node 16 to coveralls.io...
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 086bda7

Please sign in to comment.