File tree Expand file tree Collapse file tree 6 files changed +497
-30
lines changed
Expand file tree Collapse file tree 6 files changed +497
-30
lines changed Original file line number Diff line number Diff line change 1+ # #182 chore: fix CI error related to prettier `fmt`
2+ d6b2e3a52123aa49bf8047b2b92f98bd960d6234
3+ # #335 chore: update `prettier` to fix CI
4+ 3bd91caf9f611dd0cc62ef58169e9026db085379
Original file line number Diff line number Diff line change 99 release-please :
1010 runs-on : ubuntu-latest
1111 permissions :
12- contents : write
13- pull-requests : write
12+ contents : read
1413 id-token : write
1514 models : read
1615 steps :
17- - uses : googleapis/release-please-action@v4
16+ - uses : googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
1817 id : release
18+ with :
19+ token : ${{ secrets.WORKFLOW_PUSH_BOT_TOKEN }}
1920
2021 - uses : actions/checkout@v6
2122 if : ${{ steps.release.outputs.release_created }}
Original file line number Diff line number Diff line change 2424 run : npm run build:baseline
2525
2626 - name : Create Pull Request
27- uses : peter-evans/create-pull-request@v7
27+ uses : peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
2828 with :
2929 token : ${{ secrets.WORKFLOW_PUSH_BOT_TOKEN }}
3030 commit-message : " fix: update baseline data"
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import eslintPlugin from "eslint-plugin-eslint-plugin";
1212import globals from "globals" ;
1313import json from "@eslint/json" ;
1414import { defineConfig , globalIgnores } from "eslint/config" ;
15+ import css from "./src/index.js" ;
1516
1617//-----------------------------------------------------------------------------
1718// Helpers
@@ -104,4 +105,12 @@ export default defineConfig([
104105 language : "json/json" ,
105106 extends : [ "json/recommended" ] ,
106107 } ,
108+ // This CSS configuration is mainly used to validate the `test.css` file for local testing.
109+ {
110+ name : "css/css" ,
111+ plugins : { css } ,
112+ files : [ "**/*.css" ] ,
113+ language : "css/css" ,
114+ extends : [ "css/recommended" ] ,
115+ } ,
107116] ) ;
Original file line number Diff line number Diff line change 9696 "eslint-config-eslint" : " ^13.0.0" ,
9797 "eslint-plugin-eslint-plugin" : " ^6.3.2" ,
9898 "globals" : " ^16.5.0" ,
99- "lint-staged" : " ^15.2.7 " ,
99+ "lint-staged" : " ^16.0.0 " ,
100100 "mdast-util-from-markdown" : " ^2.0.2" ,
101101 "mdn-data" : " ^2.25.0" ,
102102 "mocha" : " ^11.0.0" ,
106106 "rollup-plugin-delete" : " ^3.0.1" ,
107107 "tailwind-csstree" : " ^0.1.0" ,
108108 "typescript" : " ^5.9.2" ,
109- "web-features" : " ^3.10 .0" ,
109+ "web-features" : " ^3.12 .0" ,
110110 "yorkie" : " ^2.0.0"
111111 },
112112 "engines" : {
You can’t perform that action at this time.
0 commit comments