Skip to content

Commit

Permalink
Merge pull request #33 from darthmaim/feature/update-ci
Browse files Browse the repository at this point in the history
Update actions to latest version
  • Loading branch information
queicherius authored Nov 23, 2024
2 parents 8cbb7b0 + d180b81 commit 2a95eb8
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,13 @@ jobs:

steps:
- name: 'Checkout the repository'
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: 'Setup Node.JS'
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'

- name: 'Cache dependencies'
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
cache: yarn

- name: 'Install dependencies'
run: yarn install --frozen-lockfile
Expand All @@ -34,7 +29,7 @@ jobs:
run: yarn test --coverage

- name: 'Save test coverage'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v5

- name: 'Check code formatting'
run: yarn format:check
Expand Down

0 comments on commit 2a95eb8

Please sign in to comment.