We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5772741 commit 792d3aaCopy full SHA for 792d3aa
.github/workflows/pr-status-checks.yml
@@ -1,7 +1,7 @@
1
name: PR Status Checks
2
3
on:
4
- # Allows it to be manually triggered, used primarily for debugging
+ # Allows it to be manually triggered, used primarily for debugging
5
workflow_dispatch:
6
pull_request:
7
branches:
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
checks:
13
- name: "Checks"
+ name: 'Checks'
14
runs-on: ubuntu-latest
15
16
steps:
@@ -20,15 +20,14 @@ jobs:
20
- name: Setup Nodejs and yarn
21
uses: actions/setup-node@v2
22
with:
23
- node-version: "16"
+ node-version: '18'
24
cache: yarn
25
26
- name: Install dependencies
27
run: yarn
28
-
+
29
- name: Check that it builds
30
run: yarn build
31
env:
32
- NODE_OPTIONS: "--max_old_space_size=8192"
+ NODE_OPTIONS: '--max_old_space_size=8192'
33
CI: false
34
0 commit comments