We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48b853e commit cdef119Copy full SHA for cdef119
.github/workflows/main.yml
@@ -1,14 +1,20 @@
1
-name: Main
+name: main
2
3
-on: [pull_request, push]
+on:
4
+ push:
5
+ pull_request:
6
7
jobs:
8
build:
- runs-on: ubuntu-latest
9
+ runs-on: ubuntu-24.04
10
steps:
- # https://github.com/actions/checkout
- - name: Checkout
11
- uses: actions/checkout@v4
+ - uses: actions/checkout@v4
12
+
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version-file: ".tool-versions"
16
+ cache: "npm"
17
18
- name: Install
19
run: npm ci
20
- name: Build
.nvmrc
.tool-versions
@@ -0,0 +1 @@
+nodejs 20.15.1
0 commit comments