File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 # Steps represent a sequence of tasks that will be executed as part of the job
2020 steps :
2121 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22- - uses : actions/checkout@v3
22+ - uses : actions/checkout@v4
23+ - uses : actions/setup-node@v6
24+ with :
25+ node-version : 24
2326 - name : Build website
2427 run : cd website && yarn && yarn build
2528 - name : Deploy to GitHub Pages
Original file line number Diff line number Diff line change @@ -8,17 +8,11 @@ on: ["push", "pull_request"]
88jobs :
99 build :
1010 runs-on : ubuntu-latest
11- strategy :
12- matrix :
13- node-version : [20.x]
14- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1511 steps :
16- - uses : actions/checkout@v3
17- - name : Use Node.js ${{ matrix.node-version }}
18- uses : actions/setup-node@v3
12+ - uses : actions/checkout@v4
13+ - uses : actions/setup-node@v6
1914 with :
20- node-version : ${{ matrix.node-version }}
21- cache : " yarn"
15+ node-version : 24
2216 - name : yarn install
2317 run : yarn --frozen-lockfile
2418 - name : test
You can’t perform that action at this time.
0 commit comments