Bump @babel/preset-env from 7.23.2 to 7.23.8 #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- "releases/*" | |
jobs: | |
test-javascript: | |
name: JavaScript Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install Dependencies | |
id: npm-ci | |
run: npm ci | |
- name: Check Format | |
id: npm-format-check | |
run: npm run format:check | |
- name: Lint | |
id: npm-lint | |
run: npm run lint | |
- name: Test | |
id: npm-ci-test | |
run: npm run ci-test | |
test-action: | |
name: GitHub Actions Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Create files | |
run: | | |
echo -n amd64 > arch_amd64 | |
echo -n arm64 > arch_arm64 | |
echo -n arm > arch_arm | |
cat > Containerfile <<EOF | |
FROM docker.io/library/alpine:3.18 | |
ARG TARGETARCH | |
COPY arch_\$TARGETARCH /arch | |
CMD cat /arch | |
EOF | |
- name: Run Local Action | |
id: test-action | |
uses: ./ | |
with: | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
linux/arm | |
podman-image: quay.io/containers/podman:v4.6 | |
repository: test | |
tags: | | |
latest | |
v1 | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Test images | |
run: | | |
echo "Check manifest: test:latest" | |
podman manifest exists test:latest | |
echo "Check manifest: test:v1" | |
podman manifest exists test:v1 | |
# We have to select image manually on older versions of podman. | |
# Specifying an image with sha256 hash is NOT working. | |
# Load the image again. | |
# Reference: https://github.com/containers/podman/pull/14827 | |
echo "Check result: linux/amd64" | |
podman load -i "${RUNNER_TEMP}/podman-in-podman-build/test_latest_linux_amd64.tar" | |
RESULT=$(podman run --rm localhost/test:latest_linux_amd64) | |
echo "$RESULT" | |
test "$RESULT" == "amd64" | |
echo "Check result: linux/arm64" | |
podman load -i "${RUNNER_TEMP}/podman-in-podman-build/test_latest_linux_arm64.tar" | |
RESULT=$(podman run --rm localhost/test:latest_linux_arm64) | |
echo "$RESULT" | |
test "$RESULT" == "arm64" | |
echo "Check result: linux/arm" | |
podman load -i "${RUNNER_TEMP}/podman-in-podman-build/test_latest_linux_arm.tar" | |
RESULT=$(podman run --rm localhost/test:latest_linux_arm) | |
echo "$RESULT" | |
test "$RESULT" == "arm" |