chore!: remove unused source-resolver
package
#162
Workflow file for this run
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: Test JS packages | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- master | |
# This will cancel previous runs when a branch or PR is updated | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Test JS packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get current date | |
id: date | |
run: echo "date=$(date +'%Y.%m.%d.%H.%M')" >> $GITHUB_STATE | |
- name: prepare docker images tags | |
id: prep | |
run: | | |
REGISTRY="ghcr.io" | |
IMG="${REGISTRY}/${{ github.repository }}" | |
IMAGE=$(echo "$IMG" | tr '[:upper:]' '[:lower:]') | |
TAGS="${IMAGE}:${{ github.sha }}" | |
TAGS="${TAGS},${IMAGE}:latest,${IMAGE}:v${{ steps.date.outputs.date }}" | |
echo ::set-output name=tags::${TAGS} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test JS packages | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: Dockerfile.ci | |
tags: ${{ steps.prep.outputs.tags }} | |
target: test-js | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |