Skip to content

Bump esbuild from 0.21.5 to 0.22.0 #420

Bump esbuild from 0.21.5 to 0.22.0

Bump esbuild from 0.21.5 to 0.22.0 #420

Workflow file for this run

# Copyright 2022 Ross Light
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
name: Test
on:
push:
branches:
- '**'
pull_request:
branches:
- 'main'
jobs:
check:
name: nix flake check
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v23
with:
extra_nix_config: |
experimental-features = nix-command flakes ca-derivations impure-derivations
- name: nix flake check
run: nix flake check --print-build-logs
integration:
name: Integration
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v23
- id: google-auth
name: Authenticate to Google Cloud Platform
uses: google-github-actions/auth@v1
with:
workload_identity_provider: ${{ vars.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ vars.GOOGLE_SERVICE_ACCOUNT }}
token_format: access_token
- name: Set up cache
uses: ./
with:
substituters: gs://zombiezen-setup-nix-cache-action
secret_keys: ${{ secrets.NIX_PRIVATE_KEY }}
use_nixcached: true
- name: nix build
run: nix build --print-build-logs '.#devShells.x86_64-linux.default'