Skip to content

Commit

Permalink
Merge pull request #72 from Jalle19/actions-bump
Browse files Browse the repository at this point in the history
Use actions/checkout@v4
  • Loading branch information
Jalle19 authored Aug 29, 2024
2 parents f2c2d74 + 107ac39 commit 1ab05af
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ jobs:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Check formatting
run: npm run prettier-check
eslint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Run eslint
run: npm run lint
jest:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Run tests
run: npm run test
Expand All @@ -40,7 +40,7 @@ jobs:
run:
working-directory: ./webif
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Check formatting
run: npm run prettier-check
Expand All @@ -51,7 +51,7 @@ jobs:
run:
working-directory: ./webif
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Run eslint
run: npm run lint
Expand All @@ -62,14 +62,14 @@ jobs:
run:
working-directory: ./webif
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Run svelte-check
run: npm run check
build-docker:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build the image
run: docker build -t eachwatt/latest .

0 comments on commit 1ab05af

Please sign in to comment.