Skip to content

Commit

Permalink
Update GH workflow and codesandbox ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbarbara committed Feb 24, 2023
1 parent b1d43c0 commit dc5517b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"sandboxes": ["/demo"],
"node": "16"
"node": "18"
}
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ jobs:
timezone: America/Sao_Paulo

- name: Setup repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Cache Packages
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Publish code coverage
if: "!startsWith(github.ref, 'refs/tags/')"
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

Expand Down

0 comments on commit dc5517b

Please sign in to comment.