Skip to content

Commit 07e9dc6

Browse files
authored
GitHub Actions Tidy-up (#3114)
- Allow CodeQL workflow to be run from GitHub Actions WebUI at any time - Set CodeQL to also check for best practises/code problems (as well as security) - Capitalize Publish GH Action - Change Windows Test workflow for consistent file extension (also means its formatted with Prettier) and remove leading empty linebreak - Run Prettier (maybe we should add this to build script to ensure all code is formatted?) - Change .gitattributes to have LF line-endings for more file types
1 parent 9006689 commit 07e9dc6

8 files changed

+12
-7
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
*.js text eol=lf
1717
*.json text eol=lf
1818
*.md text eol=lf
19+
*.mjs text eol=lf
1920
*.sh text eol=lf
2021
*.txt text eol=lf
2122
*.xml text eol=lf
23+
*.yml text eol=lf

.github/workflows/codeql-analysis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches:
1010
- main
1111
- "!dependabot/**"
12+
workflow_dispatch:
1213

1314
jobs:
1415
analyze:
@@ -27,6 +28,7 @@ jobs:
2728
uses: github/codeql-action/init@v3
2829
with:
2930
languages: "javascript"
31+
queries: +security-and-quality
3032

3133
- name: Perform CodeQL Analysis
3234
uses: github/codeql-action/analyze@v3

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: publish
1+
name: Publish
22

33
on:
44
push:

.github/workflows/test-windows.yaml .github/workflows/test-windows.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
name: Build status
1+
name: Build status (Windows)
32

43
on:
54
push:

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build status
1+
name: Build status (Ubuntu)
22

33
on:
44
push:

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Changelog
22

33
## 9.0.1 (April 11, 2023)
4+
45
- Fixed tests on Windows, adds Windows Testing Action [#3110](https://github.com/h5bp/html5-boilerplate/pull/3110)
56
- Add og:image:alt for accessibility [#3066](https://github.com/h5bp/html5-boilerplate/pull/3066)
67
- Upgrade to Gulp 5 [#3100](https://github.com/h5bp/html5-boilerplate/pull/3100) [#3105](https://github.com/h5bp/html5-boilerplate/pull/3105)
78
- ci: Use GITHUB_OUTPUT envvar instead of set-output command [#3068](https://github.com/h5bp/html5-boilerplate/pull/3068)
89
- Readme and Changelog updates [#3055](https://github.com/h5bp/html5-boilerplate/pull/3055) [#3057](https://github.com/h5bp/html5-boilerplate/pull/3057) [#3064](https://github.com/h5bp/html5-boilerplate/pull/3064)
910

10-
1111
## 9.0.0 (December 6, 2023)
12+
1213
- Removing tile images [#3023](https://github.com/h5bp/html5-boilerplate/pull/3023)
1314
- Add Prettier [#3011](https://github.com/h5bp/html5-boilerplate/pull/3011)
1415
- Remove Modernizr [#3002](https://github.com/h5bp/html5-boilerplate/issues/3002)

docs/about-this-repo.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ of our `.github` folder.
9595
file of our `dist` folder.
9696
- `push-to-template.yml` pushes the `HEAD` of `main` to our template repo
9797
- `spellcheck.yml` automatically checks markdown files for typos with cSpell.
98-
- `test.yml` runs our test suite.
98+
- `test.yml` runs our test suite on Ubuntu.
99+
- `test-windows.yml` runs our test suite on Windows.
99100
- `CODE_OF_CONDUCT.md` is our Code of Conduct, based on
100101
[Contributor Covenant.](https://www.contributor-covenant.org/)
101102
- `CONTRIBUTING.md` contains our contribution guidelines.

gulpfile.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ gulp.task('copy:misc', () =>
107107
// (other tasks will handle the copying of these files)
108108
`!${dirs.src}/css/main.css`,
109109
`!${dirs.src}/index.html`,
110-
`!**/.DS_Store`
110+
`!**/.DS_Store`,
111111
],
112112
{
113113
encoding: false,

0 commit comments

Comments
 (0)