Skip to content

Commit

Permalink
version 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikefromzero committed Jan 21, 2025
1 parent b92f1b1 commit a697038
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml-template
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- name: Upload HTML report(backstop data)
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: report
path: backstop_data
1 change: 1 addition & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ html {
align-items: center;
justify-content: space-between;
padding-right: 50px;
height: 60px;
}

.logo {
Expand Down

0 comments on commit a697038

Please sign in to comment.