Skip to content

Commit

Permalink
Pin setup atmos github action (#54)
Browse files Browse the repository at this point in the history
* Pin setup atmos github action

* Update contents of the dist directory

---------

Co-authored-by: goruha <[email protected]>
  • Loading branch information
goruha and goruha authored May 21, 2024
1 parent 6b1b99a commit badeac6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cache: yarn
- name: install dependencies
run: yarn install --frozen-lockfile --prefer-offline
- uses: cloudposse/github-action-setup-atmos@v1
- uses: cloudposse/github-action-setup-atmos@v2
with:
install-wrapper: false
- name: run unit tests
Expand All @@ -47,7 +47,7 @@ jobs:
with:
node-version-file: package.json
cache: yarn
- uses: cloudposse/github-action-setup-atmos@v1
- uses: cloudposse/github-action-setup-atmos@v2
with:
install-wrapper: false
- uses: ./
Expand All @@ -73,7 +73,7 @@ jobs:
with:
node-version-file: package.json
cache: yarn
- uses: cloudposse/github-action-setup-atmos@v1
- uses: cloudposse/github-action-setup-atmos@v2
with:
install-wrapper: false
- uses: ./
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
Expand Down
31 changes: 15 additions & 16 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32387,19 +32387,19 @@ function foldNewline(source, offset) {
return { fold, offset };
}
const escapeCodes = {
'0': '\0',
a: '\x07',
b: '\b',
e: '\x1b',
f: '\f',
n: '\n',
r: '\r',
t: '\t',
v: '\v',
N: '\u0085',
_: '\u00a0',
L: '\u2028',
P: '\u2029',
'0': '\0', // null character
a: '\x07', // bell character
b: '\b', // backspace
e: '\x1b', // escape character
f: '\f', // form feed
n: '\n', // line feed
r: '\r', // carriage return
t: '\t', // horizontal tab
v: '\v', // vertical tab
N: '\u0085', // Unicode next line
_: '\u00a0', // Unicode non-breaking space
L: '\u2028', // Unicode line separator
P: '\u2029', // Unicode paragraph separator
' ': ' ',
'"': '"',
'/': '/',
Expand Down Expand Up @@ -37386,7 +37386,7 @@ var Scalar = __nccwpck_require__(9338);
var stringifyString = __nccwpck_require__(6226);

const binary = {
identify: value => value instanceof Uint8Array,
identify: value => value instanceof Uint8Array, // Buffer inherits from Uint8Array
default: false,
tag: 'tag:yaml.org,2002:binary',
/**
Expand Down Expand Up @@ -38359,7 +38359,6 @@ exports.stringify = stringify;
"use strict";


var Collection = __nccwpck_require__(3466);
var identity = __nccwpck_require__(5589);
var stringify = __nccwpck_require__(8409);
var stringifyComment = __nccwpck_require__(5182);
Expand Down Expand Up @@ -38481,7 +38480,7 @@ function stringifyFlowCollection({ comment, items }, ctx, { flowChars, itemInden
else {
if (!reqNewline) {
const len = lines.reduce((sum, line) => sum + line.length + 2, 2);
reqNewline = len > Collection.Collection.maxFlowStringSingleLineLength;
reqNewline = ctx.options.lineWidth > 0 && len > ctx.options.lineWidth;
}
if (reqNewline) {
str = start;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit badeac6

Please sign in to comment.