Skip to content

Wasn't creating workspace correctly #6

Wasn't creating workspace correctly

Wasn't creating workspace correctly #6

Workflow file for this run

name: Build & Test
on: push
env:
NODE_VERSION: 18.x
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- run: echo "Triggered by ${{ github.event_name }} event."
- name: Check out repository code ${{ github.repository }} on ${{ github.ref }}
uses: actions/checkout@v3
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Installing dependencies
if: steps.cache.outputs.cache-hit != 'true'
uses: borales/actions-yarn@v4
with:
cmd: install --frozen-lockfile
- name: Lint
uses: borales/actions-yarn@v4
with:
cmd: lint
- name: Archive build workspace
run: |
STAGING_DIR="${{ runner.temp }}/project"
mkdir "$STAGING_DIR"
cp -a "${{ github.workspace }}"/. "$STAGING_DIR"/
tar -czf workspace.tar.gz -C "$STAGING_DIR" .
- name: Upload workspace
uses: actions/upload-artifact@v3
with:
name: workspace
path: workspace.tar.gz
build:
needs: ['checkout']
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v3
with:
name: workspace
- name: Extract workspace
run: tar -xzf workspace.tar.gz -C ${{ github.workspace }}
- name: Build
uses: borales/actions-yarn@v4
with:
cmd: build
test:
needs: ['checkout']
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v3
with:
name: workspace
- name: Extract workspace
run: tar -xzf workspace.tar.gz -C ${{ github.workspace }}
- name: Test
uses: borales/actions-yarn@v4
with:
cmd: test